/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/



/*
 * Route 99 Header
 *
 * File:
 * assets/css/route99-header.css
 */

 :root {
	--route99-navy: #061d2b;
	--route99-navy-dark: #010d16;
	--route99-dropdown: #00101b;
	--route99-dropdown-footer: #000b13;
	--route99-gold: #e09036;
	--route99-gold-hover: #eca760;
	--route99-text: #d3ccc7;
	--route99-text-light: #e3ddd8;
	--route99-text-muted: #76706c;
	--route99-border: rgba(255, 255, 255, 0.1);
	--route99-header-height: 64px;
	--route99-display-font: "Fraunces", Georgia, serif;
	--route99-body-font: "DM Sans", system-ui, sans-serif;

    --route99-font-display: "Fraunces", Georgia, serif;
	--route99-font-body: "DM Sans", system-ui, sans-serif;
	--route99-font-mono: "DM Mono", "Courier New", monospace;
}

/* Prevent the fixed header from covering page content. */
body {
	padding-top: var(--route99-header-height);
}

body {
	font-family: var(--route99-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.route99-hero-title,
.route99-brand-name {
	font-family: var(--route99-font-display);
	/*
	    max-width: 36rem;
	*/
    margin: 0;
    color: #061d2b;
    font-family: var(--route99-font-display);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
}

.route99-hero-location-text,
.route99-hero-scroll span {
	font-family: var(--route99-font-mono);
}
/* =========================================================
   Main fixed header
   ========================================================= */

.route99-header {
	top: 0;
	right: 0;
	left: 0;
	z-index: 1050;
	height: var(--route99-header-height);
	background:#040f18;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.route99-header.route99-header-scrolled {
	background: rgba(1, 13, 22, 0.96);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.route99-header-container {
	max-width: 1280px;
	height: 100%;
	padding-right: 24px;
	padding-left: 24px;
}

.route99-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}


.cat-boxes-service-card{background: #061d2b !important;}

/* =========================================================
   Brand
   ========================================================= */

.route99-brand {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	text-decoration: none;
}

.route99-brand:hover,
.route99-brand:focus {
	color: #ffffff;
	text-decoration: none;
}

.route99-brand-logo {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.route99-brand:hover .route99-brand-logo {
	transform: scale(1.05);
}

.route99-brand-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.route99-brand-name {
	color: #ffffff;
	font-family: var(--route99-display-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.route99-brand-subtitle {
	margin-top: 4px;
	color: var(--route99-gold);
	font-family: var(--route99-body-font);
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* =========================================================
   Desktop navigation
   ========================================================= */

.route99-desktop-navigation {
	align-items: center;
	gap: 4px;
	margin-right: auto;
	margin-left: auto;
	font-family: var(--route99-body-font);
}

.route99-desktop-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-desktop-menu li {
	margin: 0;
	padding: 0;
}

.route99-nav-link,
.route99-desktop-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--route99-text);
	font-family: var(--route99-body-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	transition:
		color 0.15s ease,
		background-color 0.15s ease;
}

.route99-nav-link:hover,
.route99-nav-link:focus,
.route99-desktop-menu a:hover,
.route99-desktop-menu a:focus {
	background: rgba(255, 255, 255, 0.03);
	color: var(--route99-gold);
	text-decoration: none;
}

.route99-desktop-menu .current-menu-item > a,
.route99-desktop-menu .current_page_item > a,
.route99-desktop-menu .is-current-menu-item {
	color: var(--route99-gold);
}

/* =========================================================
   Services dropdown
   ========================================================= */

.route99-services-dropdown {
	position: relative;
}

.route99-services-toggle {
	gap: 4px;
	box-shadow: none;
}

.route99-services-toggle::after {
	display: none;
}

.route99-services-toggle i {
	font-size: 14px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.route99-services-toggle[aria-expanded="true"] {
	color: var(--route99-gold);
}

.route99-services-toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.route99-mega-menu {
	top: calc(100% + 8px) !important;
	left: 50% !important;
	width: 320px;
	margin: 0 !important;
	padding: 0;
	border: 1px solid var(--route99-border);
	border-radius: 12px;
	background: var(--route99-dropdown);
	box-shadow: 0 20px 40px rgba(0, 5, 10, 0.7);
	transform: translateX(-50%) !important;
	overflow: visible;
}

.route99-mega-menu.show {
	animation: route99DropdownOpen 0.2s ease forwards;
}

@keyframes route99DropdownOpen {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-6px) scale(0.97);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0) scale(1);
	}
}

.route99-mega-menu-arrow {
	position: absolute;
	top: -7px;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 1px solid var(--route99-border);
	border-left: 1px solid var(--route99-border);
	background: var(--route99-dropdown);
	transform: translateX(-50%) rotate(45deg);
}

.route99-mega-menu-list {
	position: relative;
	z-index: 2;
	padding: 8px;
	border-radius: 12px 12px 0 0;
	background: var(--route99-dropdown);
}

.route99-service-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.route99-service-link:hover,
.route99-service-link:focus {
	background: rgba(255, 255, 255, 0.05);
	color: inherit;
	text-decoration: none;
}

.route99-service-icon {
	display: flex;
	flex: 0 0 32px;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: 2px;
	border-radius: 8px;
	background: #0d2533;
	color: var(--route99-gold);
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
}

.route99-service-icon i {
	font-size: 16px;
	line-height: 1;
}

.route99-service-link:hover .route99-service-icon,
.route99-service-link:focus .route99-service-icon {
	background: var(--route99-gold);
	color: var(--route99-navy-dark);
}

.route99-service-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.route99-service-title {
	color: var(--route99-text-light);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.375;
	transition: color 0.15s ease;
}

.route99-service-description {
	display: -webkit-box;
	max-width: 100%;
	margin-top: 2px;
	overflow: hidden;
	color: var(--route99-text-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.375;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.route99-service-link:hover .route99-service-title,
.route99-service-link:focus .route99-service-title {
	color: var(--route99-gold);
}

.route99-service-arrow {
	flex-shrink: 0;
	margin-top: 4px;
	color: #4c4742;
	font-size: 13px;
	line-height: 1;
	transition:
		color 0.15s ease,
		transform 0.15s ease;
}

.route99-service-link:hover .route99-service-arrow,
.route99-service-link:focus .route99-service-arrow {
	color: var(--route99-gold);
	transform: translateX(2px);
}

.route99-mega-menu-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-top: 1px solid var(--route99-border);
	border-radius: 0 0 12px 12px;
	background: var(--route99-dropdown-footer);
}

.route99-mega-menu-footer span {
	color: #68625e;
	font-size: 12px;
	line-height: 1.25;
}

.route99-mega-menu-footer a {
	color: var(--route99-gold);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-mega-menu-footer a:hover,
.route99-mega-menu-footer a:focus {
	color: var(--route99-gold-hover);
	text-decoration: none;
}

/* =========================================================
   Desktop contact actions
   ========================================================= */

.route99-header-actions {
	flex-shrink: 0;
	align-items: center;
	gap: 12px;
	font-family: var(--route99-body-font);
}

.route99-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--route99-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.route99-phone-link i {
	font-size: 14px;
	line-height: 1;
}

.route99-phone-link:hover,
.route99-phone-link:focus {
	color: #ffffff;
	text-decoration: none;
}

.route99-quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 8px;
	background: var(--route99-gold);
	color: var(--route99-navy-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition:
		filter 0.2s ease,
		transform 0.15s ease;
}

.route99-quote-button:hover,
.route99-quote-button:focus {
	color: var(--route99-navy-dark);
	filter: brightness(1.1);
	text-decoration: none;
}

.route99-quote-button:active {
	transform: scale(0.95);
}

/* =========================================================
   Mobile hamburger
   ========================================================= */

.route99-mobile-toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 38px;
	height: 38px;
	padding: 7px;
	border: 0;
	background: transparent;
	color: #ffffff;
	box-shadow: none;
}

.route99-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 10px;
	background: #ffffff;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.route99-mobile-toggle:hover,
.route99-mobile-toggle:focus {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	outline: none;
}

/* =========================================================
   Mobile offcanvas
   ========================================================= */

.route99-mobile-offcanvas {
	width: min(360px, 88vw) !important;
	border-left: 1px solid var(--route99-border);
	background: var(--route99-dropdown);
	color: var(--route99-text);
	font-family: var(--route99-body-font);
}

.route99-mobile-header {
	min-height: 72px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--route99-border);
	background: var(--route99-navy-dark);
}

.route99-mobile-header .route99-brand-logo {
	width: 44px;
	height: 44px;
}

.route99-mobile-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	font-size: 20px;
	line-height: 1;
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
}

.route99-mobile-close:hover,
.route99-mobile-close:focus {
	background: rgba(255, 255, 255, 0.1);
	color: var(--route99-gold);
}

.route99-mobile-body {
	display: flex;
	flex-direction: column;
	padding: 16px 20px 24px;
}

/* =========================================================
   Mobile services accordion
   ========================================================= */

.route99-mobile-accordion {
	margin: 0;
}

.route99-mobile-accordion .accordion-item {
	border: 0;
	border-bottom: 1px solid var(--route99-border);
	border-radius: 0;
	background: transparent;
}

.route99-mobile-accordion .accordion-header {
	margin: 0;
}

.route99-mobile-accordion .accordion-button {
	padding: 12px 0;
	border: 0;
	background: transparent;
	color: var(--route99-text);
	font-family: var(--route99-body-font);
	font-size: 14px;
	font-weight: 500;
	box-shadow: none;
}

.route99-mobile-accordion .accordion-button:not(.collapsed) {
	background: transparent;
	color: var(--route99-gold);
	box-shadow: none;
}

.route99-mobile-accordion .accordion-button::after {
	width: 14px;
	height: 14px;
	margin-left: auto;
	background-image: none;
	content: "\F282";
	color: currentColor;
	font-family: "bootstrap-icons";
	font-size: 14px;
	line-height: 1;
	transform-origin: center;
}

.route99-mobile-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
}

.route99-mobile-accordion .accordion-body {
	padding: 4px 0 14px;
}

.route99-mobile-service-link {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.route99-mobile-service-link:hover,
.route99-mobile-service-link:focus {
	background: rgba(255, 255, 255, 0.05);
	color: inherit;
	text-decoration: none;
}

.route99-mobile-service-icon {
	display: flex;
	flex: 0 0 30px;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 7px;
	background: #0d2533;
	color: var(--route99-gold);
}

.route99-mobile-service-icon i {
	font-size: 15px;
	line-height: 1;
}

.route99-mobile-service-link > span:last-child {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.route99-mobile-service-link strong {
	color: var(--route99-text-light);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.route99-mobile-service-link small {
	display: block;
	margin-top: 2px;
	color: var(--route99-text-muted);
	font-size: 11px;
	line-height: 1.35;
}

.route99-mobile-all-services {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	padding: 10px 12px;
	border: 1px solid rgba(224, 144, 54, 0.25);
	border-radius: 8px;
	background: rgba(224, 144, 54, 0.08);
	color: var(--route99-gold);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.route99-mobile-all-services:hover,
.route99-mobile-all-services:focus {
	border-color: rgba(224, 144, 54, 0.45);
	background: rgba(224, 144, 54, 0.13);
	color: var(--route99-gold-hover);
	text-decoration: none;
}

/* =========================================================
   Mobile normal menu
   ========================================================= */

.route99-mobile-navigation {
	margin-top: 4px;
}

.route99-mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-mobile-menu li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--route99-border);
}

.route99-mobile-menu > .route99-mobile-nav-link {
	border-bottom: 1px solid var(--route99-border);
}

.route99-mobile-nav-link {
	display: block;
	padding: 12px 0;
	color: var(--route99-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	transition:
		color 0.15s ease,
		padding-left 0.15s ease;
}

.route99-mobile-nav-link:hover,
.route99-mobile-nav-link:focus {
	padding-left: 4px;
	color: var(--route99-gold);
	text-decoration: none;
}

.route99-mobile-menu .current-menu-item > a,
.route99-mobile-menu .current_page_item > a,
.route99-mobile-menu .is-current-menu-item {
	color: var(--route99-gold);
}

/* =========================================================
   Mobile contact area
   ========================================================= */

.route99-mobile-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--route99-border);
}

.route99-mobile-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--route99-gold);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.route99-mobile-phone i {
	font-size: 14px;
	line-height: 1;
}

.route99-mobile-phone:hover,
.route99-mobile-phone:focus {
	color: var(--route99-gold-hover);
	text-decoration: none;
}

.route99-mobile-quote {
	display: block;
	width: 100%;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--route99-gold);
	color: var(--route99-navy-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition:
		filter 0.15s ease,
		transform 0.15s ease;
}

.route99-mobile-quote:hover,
.route99-mobile-quote:focus {
	color: var(--route99-navy-dark);
	filter: brightness(1.1);
	text-decoration: none;
}

.route99-mobile-quote:active {
	transform: scale(0.98);
}

/* =========================================================
   WordPress admin bar compatibility
   ========================================================= */

.admin-bar .route99-header {
	top: 32px;
}

.admin-bar .route99-mobile-offcanvas {
	top: 32px;
	height: calc(100% - 32px);
}

/* =========================================================
   Responsive adjustments
   ========================================================= */

@media (max-width: 1199.98px) {
	.route99-header-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.route99-nav-link,
	.route99-desktop-menu a {
		padding-right: 9px;
		padding-left: 9px;
	}

	.route99-header-actions {
		gap: 8px;
	}

	.route99-phone-link {
		font-size: 13px;
	}

	.route99-quote-button {
		padding-right: 12px;
		padding-left: 12px;
	}
}

@media (max-width: 991.98px) {
	.route99-header-container {
		max-width: 100%;
		padding-right: 20px;
		padding-left: 20px;
	}

	.route99-navbar {
		width: 100%;
	}

	.route99-brand-logo {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 575.98px) {
	.route99-header-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.route99-brand {
		gap: 9px;
	}

	.route99-brand-logo {
		width: 42px;
		height: 42px;
	}

	.route99-brand-name {
		font-size: 13px;
	}

	.route99-brand-subtitle {
		font-size: 8px;
	}

	.route99-mobile-offcanvas {
		width: 90vw !important;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .route99-header {
		top: 46px;
	}

	.admin-bar .route99-mobile-offcanvas {
		top: 46px;
		height: calc(100% - 46px);
	}
}

/* =========================================================
   Accessibility
   ========================================================= */

.route99-brand:focus-visible,
.route99-nav-link:focus-visible,
.route99-desktop-menu a:focus-visible,
.route99-phone-link:focus-visible,
.route99-quote-button:focus-visible,
.route99-mobile-toggle:focus-visible,
.route99-service-link:focus-visible,
.route99-mobile-service-link:focus-visible,
.route99-mobile-menu a:focus-visible,
.route99-mobile-phone:focus-visible,
.route99-mobile-quote:focus-visible {
	outline: 2px solid var(--route99-gold);
	outline-offset: 3px;
}

/* =========================================================
 * Individual Location pages
 * ========================================================= */

.route99-single-location-content,
.route99-single-location-content #primary,
.route99-single-location-content .site-main,
.route99-location-entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.route99-location-entry-content {
	display: block;
	overflow: hidden;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-location-entry-content > .alignfull,
.route99-location-entry-content.is-layout-constrained > .alignfull {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.route99-location-intro-section,
.route99-location-faq-section {
	background: #f9f4f0;
}

.route99-location-context-section {
	background: #ffffff;
}

.route99-location-priority-section {
	background: #eef3f4;
}

.route99-location-projects-section {
	background: #061d2b;
}

.route99-location-projects-section .route99-location-section-title,
.route99-location-projects-section .route99-location-lead {
	color: #ffffff;
}

.route99-location-priority-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.route99-location-priority-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 1.35rem;
	border: 1px solid rgba(6, 29, 43, 0.12);
	border-radius: 0.9rem;
	background: #ffffff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 9px 24px rgba(6, 29, 43, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.route99-location-priority-card:hover,
.route99-location-priority-card:focus-visible {
	border-color: #c87a15;
	color: inherit;
	box-shadow: 0 14px 32px rgba(6, 29, 43, 0.12);
	transform: translateY(-2px);
}

.route99-location-priority-card-title {
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.35;
}

.route99-location-priority-card-copy {
	margin-top: 0.55rem;
	color: #4c575f;
	font-size: 0.88rem;
	line-height: 1.65;
}

.route99-location-priority-card-action {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	padding-top: 1rem;
	color: #a95f0c;
	font-size: 0.82rem;
	font-weight: 800;
}

.route99-service-city-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.route99-service-city-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(200, 122, 21, 0.35);
	border-radius: 999px;
	background: #ffffff;
	color: #8b500a;
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration: none;
}

.route99-service-city-links a:hover,
.route99-service-city-links a:focus-visible {
	border-color: #c87a15;
	background: #c87a15;
	color: #061d2b;
}

@media (max-width: 991.98px) {
	.route99-location-priority-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.route99-location-priority-grid {
		grid-template-columns: 1fr;
	}
}

.route99-location-planning-section {
	background: #e8f0f2;
}

.route99-location-container {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-location-section-title {
	max-width: 52rem;
	margin: 0.75rem 0 1rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 600;
	line-height: 1.08;
}

.route99-location-section-title span {
	color: #c87a15;
}

.route99-location-lead {
	max-width: 54rem;
	margin-bottom: 2rem;
	color: #334750;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.75;
}

.route99-location-copy-columns {
	gap: clamp(1.5rem, 4vw, 4rem);
	margin-bottom: 3rem;
}

.route99-location-copy-columns p {
	margin: 0;
	color: #4c575f;
	line-height: 1.8;
}

.route99-location-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
	.route99-location-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.route99-location-card {
	overflow: hidden;
	border: 1px solid #e2d9d1;
	border-radius: 1rem;
	background: #fdfbf9;
	box-shadow: 0 12px 32px rgba(6, 29, 43, 0.07);
}

.route99-location-card > .wp-block-shortcode,
.route99-location-card-image {
	width: 100%;
	margin: 0;
}

.route99-location-card-image,
.route99-location-card-image.route99-image-placeholder {
	height: 13rem;
	border-radius: 0;
}

.route99-location-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-location-card-copy {
	padding: 1.5rem;
}

.route99-location-card-copy h3 {
	margin: 0 0 0.75rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.3rem;
}

.route99-location-card-copy p {
	margin: 0;
	color: #4c575f;
	font-size: 0.92rem;
	line-height: 1.7;
}

.route99-location-card-copy .route99-location-card-address {
	display: flex;
	gap: 0.45rem;
	align-items: flex-start;
	margin: -0.2rem 0 0.75rem;
	color: #a45f0c;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.45;
}

.route99-location-card-address i {
	flex: 0 0 auto;
	margin-top: 0.1rem;
}

.route99-location-directory-intro {
	background: #f9f4f0;
}

.route99-location-directory-intro .route99-location-priority-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
	align-items: stretch;
	margin: 2.5rem 0 clamp(3rem, 6vw, 4.5rem);
}

.route99-location-directory-intro .route99-location-priority-card {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 4px solid #c87a15;
	border-radius: 1rem;
	background: #061d2b;
	box-shadow: 0 18px 40px rgba(6, 29, 43, 0.14);
}

.route99-location-directory-intro .route99-location-priority-card:hover {
	border-color: rgba(200, 122, 21, 0.8);
	border-top-color: #c87a15;
	box-shadow: 0 22px 46px rgba(6, 29, 43, 0.2);
}

.route99-location-directory-intro .route99-location-priority-label {
	margin: 0 0 0.85rem;
	color: #e49a32;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.route99-location-directory-intro .route99-location-priority-card-title {
	margin: 0 0 0.8rem;
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	font-weight: 650;
	line-height: 1.15;
}

.route99-location-directory-intro .route99-location-priority-card-title a {
	color: #ffffff;
	text-decoration: none;
	overflow-wrap: break-word;
}

.route99-location-directory-intro .route99-location-priority-card-title a:hover,
.route99-location-directory-intro .route99-location-priority-card-title a:focus-visible {
	color: #f0ad4e;
}

.route99-location-directory-intro .route99-location-priority-card-copy {
	margin: 0 0 1.25rem;
	color: #d7e0e4;
	font-size: 0.96rem;
	line-height: 1.7;
}

.route99-location-directory-intro .route99-location-priority-card-action {
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0;
	color: #f0ad4e;
	font-size: 0.84rem;
	text-decoration: none;
}

.route99-location-directory-intro .route99-location-priority-card-action:hover,
.route99-location-directory-intro .route99-location-priority-card-action:focus-visible {
	color: #ffffff;
}

.route99-location-directory-intro .route99-location-copy-columns {
	gap: clamp(1.5rem, 4vw, 4rem);
	margin-top: 0;
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid rgba(6, 29, 43, 0.12);
}

.route99-location-directory-intro .route99-location-copy-columns h3 {
	max-width: 32rem;
	margin: 0 0 1rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 650;
	line-height: 1.2;
}

.route99-location-directory-list {
	background: #ffffff;
}

.route99-location-directory-details {
	background: #e8f0f2;
}

@media (max-width: 767.98px) {
	.route99-location-directory-intro .route99-location-priority-grid {
		grid-template-columns: 1fr;
	}
}

.route99-location-directory-feature-grid {
	gap: 1.25rem;
	margin: 2rem 0;
}

.route99-location-directory-feature-grid > .wp-block-column {
	padding: clamp(1.4rem, 3vw, 2rem);
	border: 1px solid rgba(6, 29, 43, 0.1);
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(6, 29, 43, 0.06);
}

.route99-location-directory-feature-grid i {
	display: inline-flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: #c87a15;
	color: #061d2b;
	font-size: 1.25rem;
}

.route99-location-directory-feature-grid h3 {
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.3rem;
}

.route99-location-directory-feature-grid p {
	margin-bottom: 0;
	color: #4c575f;
	line-height: 1.75;
}

.route99-location-planning-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
	padding: clamp(1.75rem, 4vw, 3rem);
	border-radius: 1rem;
	background: #061d2b;
	color: #ffffff;
	box-shadow: 0 18px 45px rgba(6, 29, 43, 0.18);
}

.route99-location-planning-card > i {
	display: inline-flex;
	width: 3.4rem;
	height: 3.4rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #c87a15;
	color: #061d2b;
	font-size: 1.35rem;
}

.route99-location-planning-card h2 {
	margin: 0 0 0.75rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
}

.route99-location-planning-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.75;
}

/* Dynamic [route99_locations] cards. */
.route99-location-cards-grid {
	--bs-gutter-x: 1.25rem;
	--bs-gutter-y: 1.25rem;
}

.route99-location-page-card {
	display: grid;
	grid-template-columns: minmax(9rem, 38%) minmax(0, 1fr);
	height: 100%;
	min-height: 14rem;
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 1rem;
	background: #ffffff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(6, 29, 43, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.route99-location-page-card:hover,
.route99-location-page-card:focus-visible {
	border-color: #c87a15;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 18px 42px rgba(6, 29, 43, 0.15);
	transform: translateY(-3px);
}

.route99-location-page-card:focus-visible {
	outline: 3px solid rgba(200, 122, 21, 0.38);
	outline-offset: 3px;
}

.route99-location-page-card-image-wrap {
	display: block;
	min-height: 100%;
	overflow: hidden;
	background: #143c4e;
}

.route99-location-page-card-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 14rem;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.route99-location-page-card:hover .route99-location-page-card-image,
.route99-location-page-card:focus-visible .route99-location-page-card-image {
	transform: scale(1.035);
}

.route99-location-page-card-body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(1.2rem, 3vw, 1.75rem);
}

.route99-location-page-card-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.55rem;
	color: #a95f0c;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route99-location-page-card-title {
	margin-bottom: 0.6rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.15;
}

.route99-location-page-card-description {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 1rem;
	color: #59636a;
	font-size: 0.86rem;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.route99-location-page-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	color: #c87a15;
	font-size: 0.78rem;
	font-weight: 800;
}

.route99-location-page-card-link i {
	transition: transform 0.2s ease;
}

.route99-location-page-card:hover .route99-location-page-card-link i,
.route99-location-page-card:focus-visible .route99-location-page-card-link i {
	transform: translateX(0.2rem);
}

@media (min-width: 1024px) {
	.route99-location-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}
}

@media (max-width: 767.98px) {
	.route99-location-card-grid {
		grid-template-columns: 1fr;
	}

	.route99-location-planning-card {
		grid-template-columns: 1fr;
	}

	.route99-location-entry-content .wp-block-spacer {
		max-height: 64px;
	}

	.route99-location-page-card {
		grid-template-columns: 1fr;
	}

	.route99-location-page-card-image-wrap,
	.route99-location-page-card-image {
		min-height: 12rem;
		height: 12rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-header,
	.route99-brand-logo,
	.route99-nav-link,
	.route99-desktop-menu a,
	.route99-services-toggle i,
	.route99-service-link,
	.route99-service-icon,
	.route99-service-title,
	.route99-service-arrow,
	.route99-phone-link,
	.route99-quote-button,
	.route99-mobile-toggle span,
	.route99-mobile-service-link,
	.route99-mobile-menu a,
	.route99-mobile-quote {
		transition: none;
	}

	.route99-mega-menu.show {
		animation: none;
	}
}




/*
 * Route 99 Homepage Hero
 */

 .route99-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 64px);
	overflow: hidden;
	background: #061d2b;
	font-family: "DM Sans", system-ui, sans-serif;
}

.route99-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.route99-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.route99-hero-overlay-horizontal,
.route99-hero-overlay-bottom {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.route99-hero-overlay-horizontal {
	background:
		linear-gradient(
			90deg,
			rgba(0, 15, 27, 0.95) 0%,
			rgba(0, 15, 27, 0.75) 45%,
			rgba(0, 15, 27, 0.20) 100%
		);
}

.route99-hero-overlay-bottom {
	background:
		linear-gradient(
			0deg,
			rgba(0, 15, 27, 0.55) 0%,
			rgba(0, 15, 27, 0) 55%
		);
}

.route99-hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	padding-top: 96px;
	padding-right: 32px;
	padding-bottom: 64px;
	padding-left: 32px;
}

.route99-hero-content {
	max-width: 672px;
}

/* Location badge */

.route99-hero-location {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 6px 16px;
	border: 1px solid rgba(200, 122, 21, 0.4);
	border-radius: 999px;
	background: rgba(200, 122, 21, 0.2);
}

.route99-hero-location-dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c87a15;
	animation: route99Pulse 2s ease-in-out infinite;
}

.route99-hero-location-text {
	color: #eca760;
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-hero-tagline {
	max-width: 38rem;
	margin: 0 0 1rem;
	color: #eca760;
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@keyframes route99Pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.15);
	}
}

/* Title */

.route99-hero-title {
	margin: 0 0 24px;
	color: #ffffff;
	font-family: "Fraunces", Georgia, serif;
	font-size: clamp(48px, 5.5vw, 72px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.route99-hero-title span {
	color: #eca760;
	font-style: italic;
}

/* Description */

.route99-hero-description {
	max-width: 576px;
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.625;
}

/* Buttons */

.route99-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 48px;
}

.route99-hero-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 16px 20px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.16s ease,
		filter 0.2s ease;
}

.route99-hero-button i {
	font-size: 16px;
	line-height: 1;
}

.route99-hero-button:hover,
.route99-hero-button:focus {
	text-decoration: none;
}

.route99-hero-button-primary {
	border: 1px solid #c87a15;
	background: #c87a15;
	color: #ffffff;
	font-weight: 600;
}

.route99-hero-button-primary:hover,
.route99-hero-button-primary:focus {
	border-color: #e09036;
	background: #e09036;
	color: #ffffff;
}

.route99-hero-button-primary:active {
	transform: scale(0.97);
}

.route99-hero-button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	color: #ffffff;
}

.route99-hero-button-secondary:hover,
.route99-hero-button-secondary:focus {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

/* Gallery animated button */

.route99-hero-button-gallery {
	overflow: hidden;
	border: 1px solid #c87a15;
	background: transparent;
	color: #c87a15;
}

.route99-hero-button-gallery:hover,
.route99-hero-button-gallery:focus {
	background: rgba(200, 122, 21, 0.08);
	color: #e09036;
}

.route99-gallery-shine {
	position: absolute;
	inset: 0 auto 0 0;
	width: 60%;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(224, 144, 54, 0.25) 50%,
			transparent 100%
		);
	transform: translateX(-110%) skewX(-18deg);
	transition: transform 0.6s ease;
}

.route99-hero-button-gallery:hover .route99-gallery-shine,
.route99-hero-button-gallery:focus .route99-gallery-shine {
	transform: translateX(210%) skewX(-18deg);
}

.route99-gallery-camera,
.route99-gallery-label,
.route99-gallery-arrow {
	position: relative;
	z-index: 2;
}

.route99-gallery-arrow {
	width: 0;
	opacity: 0;
	transform: translateX(-6px);
	transition:
		width 0.2s ease,
		opacity 0.2s ease,
		transform 0.2s ease;
}

.route99-hero-button-gallery:hover .route99-gallery-arrow,
.route99-hero-button-gallery:focus .route99-gallery-arrow {
	width: 14px;
	opacity: 1;
	transform: translateX(0);
}

/* Trust features */

.route99-hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.route99-hero-feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.route99-hero-feature i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 16px;
	line-height: 1;
}

/* Scroll indicator */

.route99-hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transform: translateX(-50%);
}

.route99-hero-scroll span {
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-hero-scroll i {
	font-size: 16px;
	animation: route99Bounce 1.5s infinite;
}

.route99-hero-scroll:hover,
.route99-hero-scroll:focus {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

@keyframes route99Bounce {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(6px);
	}
}

/* Tablet */

@media (max-width: 991.98px) {
	.route99-hero {
		min-height: calc(100vh - 64px);
	}

	.route99-hero-container {
		padding-top: 112px;
		padding-right: 24px;
		padding-bottom: 96px;
		padding-left: 24px;
	}

	.route99-hero-content {
		max-width: 620px;
	}

	.route99-hero-title {
		font-size: clamp(48px, 8vw, 64px);
	}

	.route99-hero-description {
		font-size: 18px;
	}

	.route99-hero-overlay-horizontal {
		background:
			linear-gradient(
				90deg,
				rgba(0, 15, 27, 0.94) 0%,
				rgba(0, 15, 27, 0.75) 65%,
				rgba(0, 15, 27, 0.35) 100%
			);
	}
}

/* Mobile */

@media (max-width: 767.98px) {
	.route99-hero {
		align-items: flex-start;
		min-height: 100svh;
	}

	.route99-hero-image {
		object-position: 62% center;
	}

	.route99-hero-overlay-horizontal {
		background:
			linear-gradient(
				90deg,
				rgba(0, 15, 27, 0.94) 0%,
				rgba(0, 15, 27, 0.82) 70%,
				rgba(0, 15, 27, 0.52) 100%
			);
	}

	.route99-hero-overlay-bottom {
		background:
			linear-gradient(
				0deg,
				rgba(0, 15, 27, 0.82) 0%,
				rgba(0, 15, 27, 0.08) 70%
			);
	}

	.route99-hero-container {
		padding-top: 96px;
		padding-right: 20px;
		padding-bottom: 96px;
		padding-left: 20px;
	}

	.route99-hero-location {
		margin-bottom: 20px;
		padding: 6px 12px;
	}

	.route99-hero-location-text {
		font-size: 10px;
	}

	.route99-hero-title {
		margin-bottom: 20px;
		font-size: clamp(42px, 13vw, 56px);
	}

	.route99-hero-description {
		margin-bottom: 28px;
		font-size: 17px;
		line-height: 1.55;
	}

	.route99-hero-buttons {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 36px;
	}

	.route99-hero-button {
		width: 100%;
		min-height: 54px;
		padding: 15px 20px;
	}

	.route99-hero-features {
		flex-direction: column;
		gap: 12px;
	}

	.route99-hero-scroll {
		display: none;
	}
}

@media (max-width: 375px) {
	.route99-hero-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.route99-hero-title {
		font-size: 40px;
	}

	.route99-hero-description {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-hero-location-dot,
	.route99-hero-scroll i {
		animation: none;
	}

	.route99-hero-button,
	.route99-gallery-shine,
	.route99-gallery-arrow {
		transition: none;
	}
}




/*
 * Route 99 Stats Strip
 *
 * Original Tailwind values:
 * background: oklch(0.22 0.04 240) = #061d2b
 * accent:     oklch(0.65 0.14 65) = #c87a15
 */

 .route99-stats {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #061d2b;
}

.route99-stats-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-stats-row {
	align-items: stretch;
}

.route99-stat-column {
	position: relative;
}

.route99-stat-item {
	height: 100%;
	text-align: center;
}

.route99-stat-value {
	margin-bottom: 0.25rem;
	color: #c87a15;
	font-family: "Fraunces", Georgia, serif;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.2;
}

.route99-stat-label {
	color: rgba(255, 255, 255, 0.6);
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	letter-spacing: 0.025em;
}

/*
 * Tailwind lg breakpoint starts at 1024px.
 */
@media (min-width: 1024px) {
	.route99-stats-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-stat-item {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-stat-value {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	/*
	 * Equivalent to:
	 * lg:divide-x lg:divide-white/10
	 */
	.route99-stat-column:not(:first-child)::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 1px;
		background-color: rgba(255, 255, 255, 0.1);
		content: "";
	}
}







/*
 * Route 99 Services Section
 */

 .route99-services-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #f9f4f0;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-services-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/*
 * WordPress Global Styles limits constrained Group children to the theme's
 * content width (currently 840px). Keep old inserted copies of this pattern
 * at the original Route 99 section width.
 */
.route99-services-section.is-layout-constrained > .route99-services-container,
.route99-services-section > .route99-services-container.is-layout-constrained,
.route99-services-container.is-layout-constrained > .route99-services-heading,
.route99-services-container.is-layout-constrained > .route99-services-grid {
	width: 100%;
	max-width: 1280px;
}

.is-layout-constrained > .route99-services-section {
	width: 100%;
	max-width: none !important;
}

.route99-services-section.is-layout-constrained > .route99-services-container,
.route99-services-container.is-layout-constrained > .route99-services-grid {
	margin-right: auto !important;
	margin-left: auto !important;
}

/* =========================================================
   Section heading
   ========================================================= */

.route99-services-heading {
	margin-bottom: 3.5rem;
}

.route99-section-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.route99-section-eyebrow-line {
	display: block;
	width: 3rem;
	height: 1px;
	margin: 0;
	border: 0;
	background-color: #c87a15;
}

.route99-section-eyebrow-text {
	margin: 0;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-services-section h2 {
	max-width: 36rem;
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-services-section h2 span,
.route99-services-section h2 em {
	font-style: italic;
}

.route99-services-intro {
	max-width: 42rem;
	margin: 1rem 0 0;
	color: #4c575f;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.75rem;
}

/* =========================================================
   Grid
   ========================================================= */

.route99-services-grid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

.route99-service-column {
	display: flex;
}

/* =========================================================
   Service card
   ========================================================= */

.route99-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
	cursor: pointer;
	transition:
		transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.route99-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(6, 29, 43, 0.15);
}

/* =========================================================
   Card image
   ========================================================= */

.route99-service-image-wrap {
	position: relative;
	flex: 0 0 11rem;
	height: 11rem;
	overflow: hidden;
}

.route99-service-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.route99-service-card:hover .route99-service-image {
	transform: scale(1.05);
}

.route99-service-image-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(6, 29, 43, 0.6) 0%,
			rgba(6, 29, 43, 0) 100%
		);
	pointer-events: none;
}

.route99-service-accent-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0.25rem;
	background-color: #c87a15;
}

.route99-service-card .route99-service-icon {
	position: absolute;
	bottom: 0.75rem;
	left: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: #c87a15;
	color: #ffffff;
}

.route99-service-card .route99-service-icon i {
	font-size: 1.375rem;
	line-height: 1;
}

/* =========================================================
   Card content
   ========================================================= */

.route99-service-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.route99-service-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.route99-service-card-title {
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-service-chevron {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 1rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.route99-service-card:hover .route99-service-chevron {
	transform: rotate(-90deg);
}

/* =========================================================
   Service list
   ========================================================= */

.route99-service-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-service-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.375rem;
	color: #4c575f;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
}

.route99-service-list li:last-child {
	margin-bottom: 0;
}

.route99-service-list-arrow {
	flex-shrink: 0;
	margin-top: 0.125rem;
	color: #c87a15;
	line-height: 1;
}

.route99-service-list .route99-service-more-item {
	position: relative;
	z-index: 2;
	display: block;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.route99-service-list .route99-service-more {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #c87a15;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	text-align: left;
}

.route99-service-list .route99-service-more:hover,
.route99-service-list .route99-service-more:focus-visible {
	color: #9d5905;
	text-decoration: underline;
}

.route99-service-list-extra {
	max-height: 0;
	margin-bottom: 0 !important;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-0.25rem);
	visibility: hidden;
	transition:
		max-height 0.28s ease,
		margin-bottom 0.28s ease,
		opacity 0.2s ease,
		transform 0.28s ease;
}

.route99-service-card.is-service-list-expanded .route99-service-list-extra {
	max-height: 4rem;
	margin-bottom: 0.375rem !important;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.route99-service-card.is-service-list-expanded .route99-service-chevron {
	transform: rotate(180deg);
}

/* =========================================================
   Card footer
   ========================================================= */

.route99-service-footer {
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid #ede6e1;
}

.route99-service-page-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #c87a15;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

/* Let the card's existing destination link cover the image, title, and body. */
.route99-service-page-link::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
}

.route99-service-page-link:focus-visible::after {
	border: 3px solid #c87a15;
	border-radius: 0.75rem;
	outline: 2px solid #ffffff;
	outline-offset: -5px;
}

.route99-service-page-link i {
	font-size: 0.6875rem;
	line-height: 1;
	transition: transform 0.15s ease;
}

.route99-service-page-link:hover,
.route99-service-page-link:focus {
	color: #e09036;
	text-decoration: none;
}

.route99-service-page-link:hover i,
.route99-service-page-link:focus i {
	transform: translateX(2px);
}

/* =========================================================
   Exact Tailwind breakpoints
   ========================================================= */

/*
 * Tailwind sm breakpoint: 640px.
 * Bootstrap normally starts sm at 576px, so this corrects the grid.
 */

@media (min-width: 576px) and (max-width: 639.98px) {
	.route99-service-column {
		width: 100%;
	}
}

@media (min-width: 1024px) {
	.route99-services-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-services-section h2 {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Tailwind lg is 1024px, while Bootstrap lg is 992px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-service-column {
		width: 50%;
	}
}

/*
 * Tailwind xl is 1280px, while Bootstrap xl is 1200px.
 */
@media (min-width: 1200px) and (max-width: 1279.98px) {
	.route99-service-column {
		width: 33.333333%;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 639.98px) {
	.route99-services-heading {
		margin-bottom: 2.5rem;
	}

	.route99-services-section h2 {
		font-size: 2rem;
	}

	.route99-services-intro {
		font-size: 1rem;
		line-height: 1.625rem;
	}
}

/* Individual Service pages: editable content beneath the automatic hero. */
.route99-service-seo-section,
.route99-individual-projects-section {
	width: 100%;
	max-width: none !important;
	padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.route99-service-seo-section {
	background: #f7f4f0;
}

.route99-individual-projects-section {
	background: #061d2b;
}

.route99-individual-projects-section .route99-service-seo-title,
.route99-individual-projects-section .route99-service-seo-lead {
	color: #ffffff;
}

.route99-individual-projects-section .route99-service-seo-lead {
	opacity: 0.78;
}

.is-layout-constrained > .route99-service-seo-section,
.is-layout-constrained > .route99-individual-projects-section,
.route99-service-seo-section.alignfull,
.route99-individual-projects-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-service-seo-section.is-layout-constrained > .route99-service-seo-container,
.route99-individual-projects-section.is-layout-constrained > .route99-service-seo-container,
.route99-service-seo-container {
	width: min(100% - 2rem, 1200px);
	max-width: 1200px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-service-seo-intro {
	max-width: 850px;
	margin-bottom: 2.5rem;
}

.route99-service-seo-title {
	max-width: 850px;
	margin: 0.8rem 0 1.2rem;
	color: #102f3f;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.2rem, 4vw, 3.7rem);
	font-weight: 700;
	line-height: 1.08;
}

.route99-service-seo-title span {
	display: block;
	color: #c87a15;
}

.route99-service-seo-lead {
	max-width: 780px;
	color: #435863;
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.75;
}

.route99-service-seo-intro > p:not(.route99-service-seo-lead) {
	max-width: 800px;
	color: #5c6b73;
	line-height: 1.8;
}

.route99-service-seo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.route99-service-seo-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(16, 47, 63, 0.1);
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(6, 29, 43, 0.08);
}

.route99-service-seo-card-image,
.route99-service-seo-card .route99-named-image,
.route99-service-seo-card figure {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #dce3e5, #f1ece6);
}

.route99-service-seo-card-image img,
.route99-service-seo-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-service-seo-card-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.6rem;
}

.route99-service-seo-card-copy h3 {
	margin: 0 0 0.75rem;
	color: #102f3f;
	font-size: 1.35rem;
	line-height: 1.25;
}

.route99-service-seo-card-copy p {
	color: #5c6b73;
	line-height: 1.7;
}

.route99-service-seo-list {
	margin: auto 0 0;
	padding: 1rem 0 0;
	list-style: none;
}

.route99-service-seo-list li {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.45rem;
	border-top: 1px solid rgba(16, 47, 63, 0.08);
	color: #344c58;
	font-size: 0.92rem;
}

.route99-service-seo-list li::before {
	position: absolute;
	top: 0.52rem;
	left: 0;
	color: #c87a15;
	content: "\2713";
	font-weight: 800;
}

.route99-individual-projects-section .route99-before-after-gallery {
	margin-top: 2.5rem;
}

.route99-individual-category-links-section {
	width: 100%;
	max-width: none !important;
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background: #ffffff;
}

.is-layout-constrained > .route99-individual-category-links-section,
.route99-individual-category-links-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-individual-category-links-section.is-layout-constrained > .route99-service-category-links-container,
.route99-service-category-links-container {
	width: min(100% - 2rem, 1200px);
	max-width: 1200px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-service-category-links-heading {
	margin-bottom: 1.5rem;
}

.route99-service-category-links-title {
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	font-weight: 600;
}

.route99-compact-service-grid {
	--bs-gutter-x: 0.75rem;
	--bs-gutter-y: 0.75rem;
}

.route99-compact-service-grid .route99-service-card {
	border-radius: 0.55rem;
	box-shadow: none;
}

.route99-compact-service-grid .route99-service-card-body {
	min-height: 8.5rem;
	padding: 1rem;
}

.route99-compact-service-grid .route99-service-card-heading {
	margin-bottom: 0.75rem;
}

.route99-compact-service-grid .route99-service-card-title {
	font-size: 1rem;
}

.route99-compact-service-grid .route99-service-excerpt {
	margin: 0 0 0.85rem;
	color: #59636a;
	font-size: 0.78rem;
	line-height: 1.55;
}

.route99-compact-service-grid .route99-service-excerpt p {
	margin: 0;
}

.route99-compact-service-grid .route99-service-chevron {
	display: none;
}

.route99-compact-service-grid .route99-service-footer {
	padding-top: 0.6rem;
}

.route99-projects-pagination {
	margin-top: 2rem;
}

.route99-projects-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-projects-pagination a,
.route99-projects-pagination span.page-numbers {
	display: inline-flex;
	min-width: 2.75rem;
	min-height: 2.75rem;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.6rem 0.9rem;
	border: 1px solid rgba(16, 47, 63, 0.14);
	border-radius: 999px;
	background: #ffffff;
	color: #102f3f;
	font-weight: 700;
	text-decoration: none;
}

.route99-projects-pagination a:hover,
.route99-projects-pagination a:focus,
.route99-projects-pagination .current {
	border-color: #c87a15;
	background: #c87a15;
	color: #061d2b;
}

@media (max-width: 991.98px) {
	.route99-service-seo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 639.98px) {
	.route99-service-seo-section,
	.route99-individual-projects-section {
		padding: 4rem 0;
	}

	.route99-service-seo-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
 * Individual Project page patterns
 * ========================================================= */

.route99-project-page-hero,
.route99-project-story-section,
.route99-project-scope-section {
	width: 100%;
	padding: 0;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-project-page-hero {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at 85% 15%, rgba(200, 122, 21, 0.18), transparent 32%), #061d2b;
	color: #ffffff;
}

.route99-project-page-hero > .wp-block-shortcode,
.route99-project-page-hero-image,
.route99-project-page-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.route99-project-page-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-project-page-hero-image.route99-image-placeholder {
	opacity: 0.18;
}

.route99-project-page-hero-overlay {
	background: linear-gradient(90deg, rgba(6, 29, 43, 0.97) 0%, rgba(6, 29, 43, 0.82) 52%, rgba(6, 29, 43, 0.42) 100%);
	pointer-events: none;
}

.route99-project-page-hero > .route99-project-page-container {
	position: relative;
	z-index: 2;
}

.route99-project-page-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-project-page-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	color: #eca760;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route99-project-page-meta span,
.route99-project-page-meta span:last-child {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.route99-project-page-title {
	max-width: 58rem;
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 600;
	line-height: 1.02;
}

.route99-project-page-tagline {
	max-width: 46rem;
	margin: 1.5rem 0 0;
	color: #eca760;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.25rem, 2.2vw, 1.8rem);
	font-style: italic;
	line-height: 1.35;
}

.route99-project-page-summary {
	max-width: 48rem;
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.05rem;
	line-height: 1.75;
}

.route99-project-at-a-glance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 58rem;
	margin-top: 2rem;
}

.route99-project-at-a-glance > div {
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
}

.route99-project-at-a-glance small,
.route99-project-at-a-glance strong {
	display: block;
}

.route99-project-at-a-glance small {
	margin-bottom: 0.35rem;
	color: #eca760;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route99-project-at-a-glance strong {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.82rem;
	line-height: 1.5;
}

.route99-project-story-section {
	background: #f9f4f0;
}

.route99-project-details-section {
	width: 100%;
	padding: 0;
	background: #ffffff;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-project-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.route99-project-detail-card {
	overflow: hidden;
	border: 1px solid #e2d9d1;
	border-radius: 1rem;
	background: #fdfbf9;
	box-shadow: 0 10px 30px rgba(6, 29, 43, 0.06);
}

.route99-project-detail-card > .wp-block-shortcode,
.route99-project-detail-image {
	width: 100%;
	margin: 0;
}

.route99-project-detail-image,
.route99-project-detail-image.route99-image-placeholder {
	height: 14rem;
	border-radius: 0;
}

.route99-project-detail-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-project-detail-copy {
	padding: 1.5rem;
}

.route99-project-detail-copy h3 {
	margin: 0 0 0.75rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
}

.route99-project-detail-copy p {
	margin: 0;
	color: #4c575f;
	font-size: 0.9rem;
	line-height: 1.7;
}

.route99-project-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.route99-project-story-card {
	padding: 2rem;
	border: 1px solid #e2d9d1;
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(6, 29, 43, 0.06);
}

.route99-project-story-card > span {
	display: inline-flex;
	width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: rgba(200, 122, 21, 0.14);
	color: #c87a15;
	font-size: 0.8rem;
	font-weight: 800;
}

.route99-project-story-card h3 {
	margin: 0 0 0.75rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.4rem;
}

.route99-project-story-card p {
	margin: 0;
	color: #4c575f;
	line-height: 1.7;
}

.route99-project-scope-section {
	background: #ffffff;
}

.route99-project-scope-card {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 3rem;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: 1rem;
	background: #061d2b;
	color: #ffffff;
}

.route99-project-scope-card h2 {
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
}

.route99-project-scope-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.route99-project-scope-columns h3 {
	margin: 0 0 1rem;
	color: #eca760;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.1rem;
}

.route99-project-scope-list {
	display: grid;
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-project-scope-list li {
	position: relative;
	padding-left: 1.75rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
}

.route99-project-scope-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: #eca760;
	font-family: "bootstrap-icons";
	content: "\f26e";
}

.is-layout-constrained > .route99-project-page-hero,
.is-layout-constrained > .route99-project-story-section,
.is-layout-constrained > .route99-project-details-section,
.is-layout-constrained > .route99-project-scope-section {
	width: 100%;
	max-width: none !important;
}

.route99-project-page-hero.is-layout-constrained > .route99-project-page-container,
.route99-project-story-section.is-layout-constrained > .route99-project-page-container,
.route99-project-details-section.is-layout-constrained > .route99-project-page-container,
.route99-project-scope-section.is-layout-constrained > .route99-project-page-container {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

@media (min-width: 1024px) {
	.route99-project-page-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}
}

@media (max-width: 991.98px) {
	.route99-project-story-grid,
	.route99-project-detail-grid,
	.route99-project-scope-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 639.98px) {
	.route99-project-page-meta {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.route99-project-story-card {
		padding: 1.5rem;
	}

	.route99-project-at-a-glance,
	.route99-project-scope-columns {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-service-card,
	.route99-service-image,
	.route99-service-chevron,
	.route99-service-page-link i {
		transition: none;
	}
}









/*
 * Route 99 About Section
 */

 .route99-about-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #ffffff;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-about-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/* Keep Gutenberg copies on the original Bootstrap container width. */
.is-layout-constrained > .route99-about-section {
	width: 100%;
	max-width: none !important;
}

.route99-about-section.is-layout-constrained > .route99-about-container,
.route99-about-section > .route99-about-container.is-layout-constrained,
.route99-about-container.is-layout-constrained > .route99-about-row {
	width: 100%;
	max-width: 1280px;
}

.route99-about-section.is-layout-constrained > .route99-about-container,
.route99-about-container.is-layout-constrained > .route99-about-row {
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-about-row {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
}

/* =========================================================
   Image
   ========================================================= */

.route99-about-image-column {
	position: relative;
}

.route99-about-image-wrap {
	position: relative;
	width: 100%;
	max-width: 28rem;
	margin-right: auto;
	margin-left: auto;
}

.route99-about-image {
	display: block;
	width: 100%;
	max-width: 28rem;
	aspect-ratio: 4 / 5;
	border-radius: 1rem;
	object-fit: cover;
	box-shadow: 0 25px 50px -12px rgba(6, 29, 43, 0.2);
}

/* =========================================================
   Guarantee card
   ========================================================= */

.route99-about-guarantee {
	position: absolute;
	right: -1rem;
	bottom: -1.5rem;
	width: 100%;
	max-width: 12.5rem;
	padding: 1.25rem;
	border-radius: 0.75rem;
	background-color: #061d2b;
	color: #ffffff;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.route99-about-guarantee-title {
	margin-bottom: 0.5rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-about-guarantee-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.route99-about-guarantee-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.route99-about-guarantee-item i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 0.8125rem;
	line-height: 1;
}

/* =========================================================
   Content
   ========================================================= */

.route99-about-content {
	width: 100%;
}

.route99-about-title {
	margin: 0 0 1.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-about-title span {
	font-style: italic;
}

.route99-about-copy {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #313c44;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.625;
}

.route99-about-copy p {
	margin: 0;
}

.route99-about-signature {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #ded6d0;
}

.route99-about-name {
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.75rem;
}

.route99-about-role {
	margin-top: 0.25rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	letter-spacing: 0.025em;
}

.route99-about-button-wrap {
	margin-top: 1.5rem;
}

.route99-about-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	border-radius: 0.25rem;
	background-color: #c87a15;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition:
		background-color 0.2s ease-out,
		transform 0.16s ease-out;
}

.route99-about-button i {
	font-size: 1rem;
	line-height: 1;
}

.route99-about-button:hover,
.route99-about-button:focus {
	background-color: #e09036;
	color: #ffffff;
	text-decoration: none;
}

.route99-about-button:active {
	transform: scale(0.97);
}

/* =========================================================
   Desktop
   ========================================================= */

@media (min-width: 1024px) {

	.route99-about-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-about-row {
		--bs-gutter-x: 5rem;
		--bs-gutter-y: 0;
	}

	.route99-about-image-wrap {
		margin-left: 0;
	}

	.route99-about-guarantee {
		right: 0;
	}

	.route99-about-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Tailwind lg starts at 1024px, while Bootstrap lg starts at 992px.
 * Keep the section stacked until the original 1024px breakpoint.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-about-row > .col-lg-6 {
		width: 100%;
	}

	.route99-about-image-wrap {
		margin-right: auto;
		margin-left: auto;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {
	.route99-about-section {
		overflow: hidden;
	}

	.route99-about-row {
		--bs-gutter-y: 4rem;
	}

	.route99-about-image-wrap {
		max-width: calc(100% - 1rem);
	}

	.route99-about-guarantee {
		right: -0.5rem;
		bottom: -1.5rem;
		padding: 1rem;
	}

	.route99-about-title {
		font-size: 2rem;
	}

	.route99-about-copy {
		font-size: 1rem;
		line-height: 1.625;
	}
}

@media (max-width: 399.98px) {
	.route99-about-guarantee {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: none;
		margin-top: -1.25rem;
		margin-right: 0.75rem;
		margin-left: 0.75rem;
	}

	.route99-about-button {
		width: 100%;
		justify-content: center;
		padding-right: 1rem;
		padding-left: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-about-button {
		transition: none;
	}
}







/*
 * Route 99 Why Choose Us Section
 */

 .route99-why-section {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #061d2b;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-why-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	background-image:
		radial-gradient(
			circle at 2px 2px,
			#ffffff 1px,
			transparent 0
		);
	background-size: 32px 32px;
	pointer-events: none;
}

.route99-why-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/* Keep Gutenberg copies on the original Bootstrap container width. */
.is-layout-constrained > .route99-why-section {
	width: 100%;
	max-width: none !important;
}

.route99-why-section.is-layout-constrained > .route99-why-container,
.route99-why-section > .route99-why-container.is-layout-constrained,
.route99-why-container.is-layout-constrained > .route99-why-grid {
	width: 100%;
	max-width: 1280px;
}

.route99-why-section.is-layout-constrained > .route99-why-container,
.route99-why-container.is-layout-constrained > .route99-why-grid {
	margin-right: auto !important;
	margin-left: auto !important;
}

/* =========================================================
   Heading
   ========================================================= */

.route99-why-heading {
	margin-bottom: 3.5rem;
	text-align: center;
}

.route99-why-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.route99-why-eyebrow-line {
	display: block;
	width: 3rem;
	height: 1px;
	background-color: #c87a15;
}

.route99-why-eyebrow-text {
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-why-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-why-title span {
	color: #eca760;
	font-style: italic;
}

.route99-why-intro {
	max-width: 42rem;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.75rem;
}

/* =========================================================
   Grid
   ========================================================= */

.route99-why-grid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

.route99-why-column {
	display: flex;
}

/* =========================================================
   Cards
   ========================================================= */

.route99-why-card {
	width: 100%;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background-color: rgba(255, 255, 255, 0.05);
	transition: background-color 0.2s ease;
}

.route99-why-card:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.route99-why-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(200, 122, 21, 0.3);
	border-radius: 0.75rem;
	background-color: rgba(200, 122, 21, 0.15);
	color: #c87a15;
}

.route99-why-icon i {
	font-size: 1.5rem;
	line-height: 1;
}

.route99-why-card-title {
	margin: 0 0 0.5rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.route99-why-card-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.625;
}

/* =========================================================
   Exact original breakpoints
   ========================================================= */

@media (min-width: 1024px) {
	.route99-why-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-why-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Tailwind sm begins at 640px.
 * Keep one column between Bootstrap's 576px and Tailwind's 640px.
 */
@media (min-width: 576px) and (max-width: 639.98px) {
	.route99-why-column {
		width: 100%;
	}
}

/*
 * Tailwind lg begins at 1024px.
 * Keep two columns between Bootstrap's 992px and Tailwind's 1024px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-why-column {
		width: 50%;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 639.98px) {
	.route99-why-heading {
		margin-bottom: 2.5rem;
	}

	.route99-why-title {
		font-size: 2rem;
	}

	.route99-why-intro {
		font-size: 1rem;
		line-height: 1.625rem;
	}

	.route99-why-eyebrow-line {
		width: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-why-card {
		transition: none;
	}
}








/*
 * Route 99 Recommended Services
 */

 .route99-recommended-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #ede6e1;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-recommended-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/* Heading */

.route99-recommended-heading {
	margin-bottom: 3.5rem;
}

.route99-recommended-title {
	max-width: 42rem;
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-recommended-title span {
	font-style: italic;
}

.route99-recommended-intro {
	max-width: 42rem;
	margin: 1rem 0 0;
	color: #4c575f;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.75rem;
}

/* Grid */

.route99-recommended-grid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

.route99-recommended-column {
	display: flex;
}

/* Cards */

.route99-recommended-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 1.5rem;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
	transition:
		transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.route99-recommended-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(6, 29, 43, 0.15);
}

.route99-recommended-emoji {
	margin-bottom: 1rem;
	font-size: 1.875rem;
	line-height: 1;
}

.route99-recommended-card-title {
	margin: 0 0 0.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.route99-recommended-card-description {
	margin: 0;
	color: #4c575f;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.625;
}

.route99-recommended-label {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	width: fit-content;
	margin-top: 1rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	letter-spacing: 0.025em;
}

.route99-recommended-label i {
	font-size: 0.75rem;
	line-height: 1;
}

/* Note */

.route99-recommended-note {
	margin-top: 2.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(200, 122, 21, 0.3);
	border-radius: 0.75rem;
	background-color: rgba(200, 122, 21, 0.1);
}

.route99-recommended-note p {
	margin: 0;
	color: #313c44;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.625;
}

.route99-recommended-note strong {
	color: #061d2b;
	font-weight: 700;
}

/* Exact original breakpoints */

@media (min-width: 1024px) {
	.route99-recommended-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-recommended-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Tailwind sm begins at 640px.
 */
@media (min-width: 576px) and (max-width: 639.98px) {
	.route99-recommended-column {
		width: 100%;
	}
}

/*
 * Tailwind lg begins at 1024px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-recommended-column {
		width: 50%;
	}
}

@media (max-width: 639.98px) {
	.route99-recommended-heading {
		margin-bottom: 2.5rem;
	}

	.route99-recommended-title {
		font-size: 2rem;
	}

	.route99-recommended-intro {
		font-size: 1rem;
		line-height: 1.625rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-recommended-card {
		transition: none;
	}
}







/*
 * Route 99 Testimonials Section
 */

 .route99-testimonials-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #ffffff;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-testimonials-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/* Keep Gutenberg copies on the original Bootstrap container width. */
.is-layout-constrained > .route99-testimonials-section {
	width: 100%;
	max-width: none !important;
}

.route99-testimonials-section.is-layout-constrained > .route99-testimonials-container,
.route99-testimonials-section > .route99-testimonials-container.is-layout-constrained {
	width: 100%;
	max-width: 1280px;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-testimonials-container.is-layout-constrained > .route99-testimonials-carousel {
	width: 100%;
	max-width: none;
}

/* =========================================================
   Carousel
   ========================================================= */

.route99-testimonials-carousel .carousel-inner {
	padding: 0.25rem 0 1rem;
}

.route99-testimonials-carousel .carousel-item {
	transition: transform 0.5s ease-in-out;
}

.route99-testimonials-desktop {
	display: none;
}

.route99-testimonials-mobile {
	display: block;
}

@media (min-width: 1024px) {
	.route99-testimonials-desktop {
		display: block;
	}

	.route99-testimonials-mobile {
		display: none;
	}
}

.route99-testimonials-indicators {
	position: static;
	display: flex;
	gap: 0.5rem;
	margin: 1.25rem 0 0;
}

.route99-testimonials-indicators [data-bs-target] {
	width: 0.625rem;
	height: 0.625rem;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background-color: #c9beb6;
	opacity: 1;
}

.route99-testimonials-indicators .active {
	background-color: #c87a15;
}

.route99-testimonials-controls {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.route99-testimonials-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid #ded6d0;
	border-radius: 50%;
	background: #ffffff;
	color: #061d2b;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.route99-testimonials-controls button:hover,
.route99-testimonials-controls button:focus {
	border-color: #c87a15;
	background-color: #c87a15;
	color: #ffffff;
}

/* =========================================================
   Heading
   ========================================================= */

.route99-testimonials-heading {
	margin-bottom: 3.5rem;
	text-align: center;
}

.route99-testimonials-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.route99-testimonials-eyebrow-line {
	display: block;
	width: 3rem;
	height: 1px;
	background-color: #c87a15;
}

.route99-testimonials-eyebrow-text {
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-testimonials-title {
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-testimonials-title span {
	font-style: italic;
}

/* =========================================================
   Grid
   ========================================================= */

.route99-testimonials-grid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

.route99-testimonial-column {
	display: flex;
}

/* =========================================================
   Testimonial cards
   ========================================================= */

.route99-testimonial-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 1.75rem;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #f9f4f0;
	transition:
		transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.route99-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(6, 29, 43, 0.15);
}

/* =========================================================
   Stars
   ========================================================= */

.route99-testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: #c87a15;
}

.route99-testimonial-stars i {
	font-size: 0.875rem;
	line-height: 1;
}

/* =========================================================
   Quote
   ========================================================= */

.route99-testimonial-quote {
	flex: 1;
	margin: 0 0 1.5rem;
	color: #313c44;
	font-size: 1rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.625;
}

/* =========================================================
   Author
   ========================================================= */

.route99-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.route99-testimonial-avatar {
	display: flex;
	flex: 0 0 2.5rem;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: #061d2b;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
}

.route99-testimonial-author-details {
	min-width: 0;
}

.route99-testimonial-name {
	color: #061d2b;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25rem;
}

.route99-testimonial-location {
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
}

/* =========================================================
   Original Tailwind lg breakpoint
   ========================================================= */

@media (min-width: 1024px) {

	.route99-testimonials-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-testimonials-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Bootstrap switches .col-lg-4 at 992px.
 * The original Tailwind grid changes at 1024px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-testimonial-column {
		width: 100%;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 639.98px) {
	.route99-testimonials-heading {
		margin-bottom: 2.5rem;
	}

	.route99-testimonials-title {
		font-size: 2rem;
	}

	.route99-testimonials-eyebrow-line {
		width: 2rem;
	}

	.route99-testimonial-card {
		padding: 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-testimonial-card {
		transition: none;
	}
}







/*
 * Route 99 Before and After Gallery
 */

 .route99-gallery-section {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #061d2b;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-gallery-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image:
		radial-gradient(
			circle at 2px 2px,
			#ffffff 1px,
			transparent 0
		);
	background-size: 28px 28px;
	pointer-events: none;
}

.route99-gallery-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

/* Keep Gutenberg's constrained layout from reducing this full-width pattern to 840px. */
.is-layout-constrained > .route99-gallery-section,
.route99-gallery-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-gallery-section.is-layout-constrained > .route99-gallery-container,
.is-layout-constrained > .route99-gallery-container,
.route99-gallery-section > .route99-gallery-container.is-layout-constrained {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-gallery-container.is-layout-constrained > .route99-gallery-heading,
.route99-gallery-container.is-layout-constrained > .route99-before-after-gallery,
.route99-gallery-container.is-layout-constrained > .wp-block-shortcode,
.route99-gallery-container.is-layout-constrained > .route99-gallery-cta,
.route99-gallery-container > .wp-block-shortcode {
	width: 100%;
	max-width: none !important;
}

/* =========================================================
   Heading
   ========================================================= */

.route99-gallery-heading {
	margin-bottom: 3rem;
}

.route99-gallery-heading-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.route99-gallery-title {
	max-width: 36rem;
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-gallery-title span {
	color: #eca760;
	font-style: italic;
}

.route99-gallery-intro {
	max-width: 24rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 1rem;
	line-height: 1.625;
}

/* =========================================================
   Gallery layout
   ========================================================= */

.route99-gallery-layout {
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 2rem;
	align-items: flex-start;
}

.route99-gallery-main-column,
.route99-gallery-sidebar-column {
	width: 100%;
}

/* =========================================================
   Before and after comparison
   ========================================================= */

.route99-compare {
	--route99-position: 50%;

	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 0.75rem;
	cursor: col-resize;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
}

.route99-compare-after,
.route99-compare-before {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
}

.route99-compare-before-wrap {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--route99-position);
	overflow: hidden;
	pointer-events: none;
}

.route99-compare-before {
	width: calc(100% * 100 / var(--route99-position-number, 50));
}

/*
 * JavaScript sets a pixel width to guarantee the before image remains
 * aligned correctly at every slider position.
 */
.route99-compare-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--route99-position);
	z-index: 10;
	width: 2px;
	background-color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	transform: translateX(-50%);
	pointer-events: none;
}

.route99-compare-handle {
	position: absolute;
	top: 50%;
	left: var(--route99-position);
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.route99-compare-handle-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: #ffffff;
	color: #061d2b;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	transition: transform 0.15s ease;
}

.route99-compare.is-dragging .route99-compare-handle-circle {
	transform: scale(1.08);
}

.route99-compare-handle-circle i {
	font-size: 1.125rem;
	line-height: 1;
	transform: rotate(90deg);
}

.route99-compare-label {
	position: absolute;
	top: 0.75rem;
	z-index: 10;
	padding: 0.375rem 0.75rem;
	border-radius: 999px;
	color: #ffffff;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.route99-compare-label-before {
	left: 0.75rem;
	background-color: rgba(0, 0, 0, 0.6);
}

.route99-compare-label-after {
	right: 0.75rem;
	background-color: rgba(200, 122, 21, 0.85);
}

.route99-compare-help {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 30;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	background-color: rgba(0, 0, 0, 0.4);
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 500;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	animation: route99GalleryPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.route99-compare-help i {
	font-size: 1rem;
	line-height: 1;
	transform: rotate(90deg);
}

.route99-compare.has-interacted .route99-compare-help {
	opacity: 0;
}

@keyframes route99GalleryPulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.55;
	}
}

/* =========================================================
   Project description
   ========================================================= */

.route99-gallery-project-content {
	margin-top: 1rem;
	padding-right: 0.25rem;
	padding-left: 0.25rem;
}

.route99-gallery-project-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.route99-gallery-project-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-gallery-project-location {
	margin-top: 0.125rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.025em;
}

.route99-gallery-project-description {
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
	line-height: 1.625;
}

/* =========================================================
   Sidebar thumbnails
   ========================================================= */

.route99-gallery-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.route99-gallery-sidebar-label {
	margin-bottom: 0.25rem;
	color: rgba(255, 255, 255, 0.4);
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-gallery-thumbnails {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.route99-gallery-thumbnail {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	background: transparent;
	text-align: left;
	opacity: 0.6;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease,
		transform 0.2s ease;
}

.route99-gallery-thumbnail:hover,
.route99-gallery-thumbnail:focus {
	border-color: rgba(255, 255, 255, 0.3);
	opacity: 0.8;
}

.route99-gallery-thumbnail.is-active {
	border-color: #c87a15;
	opacity: 1;
	box-shadow: 0 10px 24px rgba(200, 122, 21, 0.2);
}

.route99-gallery-thumbnail-images {
	position: relative;
	display: block;
	height: 4rem;
	overflow: hidden;
}

.route99-gallery-thumbnail-after,
.route99-gallery-thumbnail-before {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.route99-gallery-thumbnail-before-wrap {
	position: absolute;
	inset: 0 auto 0 0;
	display: block;
	width: 50%;
	overflow: hidden;
}

.route99-gallery-thumbnail-before {
	width: 200%;
}

.route99-gallery-thumbnail-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.7);
}

.route99-gallery-thumbnail-overlay {
	position: absolute;
	inset: 0;
	background-color: transparent;
}

.route99-gallery-thumbnail.is-active .route99-gallery-thumbnail-overlay {
	background-color: rgba(200, 122, 21, 0.15);
}

.route99-gallery-thumbnail-content {
	display: block;
	padding: 0.5rem 0.75rem;
	background-color: #000f1b;
}

.route99-gallery-thumbnail-title {
	display: block;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
}

.route99-gallery-thumbnail-location {
	display: block;
	margin-top: 0.125rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.625rem;
	line-height: 1rem;
}

/* Navigation */

.route99-gallery-navigation {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.route99-gallery-navigation-button {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.625rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.5rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
	transition:
		border-color 0.15s ease,
		color 0.15s ease,
		background-color 0.15s ease;
}

.route99-gallery-navigation-button:hover,
.route99-gallery-navigation-button:focus {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.04);
	color: #ffffff;
}

/* =========================================================
   Mobile dots
   ========================================================= */

.route99-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.route99-gallery-dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.3);
	transition:
		width 0.2s ease,
		background-color 0.2s ease;
}

.route99-gallery-dot.is-active {
	width: 1.5rem;
	background-color: #c87a15;
}

.route99-gallery-mobile-navigation {
	display: none;
}

/* =========================================================
   CTA
   ========================================================= */

.route99-gallery-cta {
	margin-top: 3rem;
	text-align: center;
}

.route99-gallery-cta p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
}

.route99-gallery-quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 0.25rem;
	background-color: #c87a15;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		transform 0.16s ease;
}

.route99-gallery-quote-button:hover,
.route99-gallery-quote-button:focus {
	background-color: #e09036;
	color: #ffffff;
	text-decoration: none;
}

.route99-gallery-quote-button:active {
	transform: scale(0.97);
}

/* Gutenberg puts a custom Button class on its wrapper; mirror it onto the link. */
.route99-gallery-quote-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 0.25rem;
	background-color: #c87a15;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.route99-gallery-quote-button .wp-block-button__link:hover,
.route99-gallery-quote-button .wp-block-button__link:focus {
	background-color: #e09036;
	color: #ffffff;
}

/* =========================================================
   Desktop
   ========================================================= */

@media (min-width: 1024px) {
 

	.route99-gallery-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-gallery-heading-row {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.route99-gallery-title {
		font-size: 3rem;
		line-height: 1;
	}

	.route99-gallery-intro {
		text-align: right;
	}

	.route99-gallery-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 2rem;
		margin: 0;
	}

	.route99-gallery-main-column,
	.route99-gallery-sidebar-column {
		width: auto;
		padding: 0;
	}

	.route99-gallery-dots {
		display: none;
	}
}

/* =========================================================
   Tablet and mobile
   ========================================================= */

@media (max-width: 1023.98px) {
	.route99-gallery-sidebar {
		display: none;
	}
}

@media (max-width: 639.98px) {
	.route99-gallery-heading {
		margin-bottom: 2.5rem;
	}

	.route99-gallery-title {
		font-size: 2rem;
	}

	.route99-compare {
		aspect-ratio: 4 / 3;
	}

	.route99-compare-help {
		padding: 0.5rem 0.875rem;
		font-size: 0.75rem;
	}

	.route99-compare-label {
		top: 0.5rem;
		padding: 0.3rem 0.625rem;
		font-size: 0.625rem;
	}

	.route99-compare-label-before {
		left: 0.5rem;
	}

	.route99-compare-label-after {
		right: 0.5rem;
	}

	.route99-gallery-dots {
		display: none;
	}

	.route99-gallery-mobile-navigation {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		margin-top: 1.25rem;
	}

	.route99-gallery-mobile-arrow {
		display: inline-flex;
		min-height: 3rem;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		padding: 0.75rem 1rem;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 0.6rem;
		background: #0d2533;
		color: #ffffff;
		font-size: 0.875rem;
		font-weight: 700;
	}

	.route99-gallery-mobile-arrow:hover,
	.route99-gallery-mobile-arrow:focus-visible {
		border-color: #c87a15;
		background: #c87a15;
		color: #061d2b;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-compare-help {
		animation: none;
	}

	.route99-compare-handle-circle,
	.route99-gallery-thumbnail,
	.route99-gallery-navigation-button,
	.route99-gallery-dot,
	.route99-gallery-quote-button {
		transition: none;
	}
}








/*
 * Route 99 Leaflet Service Area
 */

 .route99-service-area-section {
	padding-top: 0;
	padding-bottom: 0;
	background-color: #f9f4f0;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-service-area-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding: 4rem 1rem 2rem;
}

/* Prevent WordPress constrained-layout rules from reducing the map to 840px. */
.is-layout-constrained > .route99-service-area-section,
.route99-service-area-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-service-area-section.is-layout-constrained > .route99-service-area-container,
.route99-service-area-section > .route99-service-area-container.is-layout-constrained {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-service-area-container.is-layout-constrained > .route99-service-area-heading,
.route99-service-area-section.is-layout-constrained > .wp-block-shortcode,
.route99-service-area-section > .wp-block-shortcode {
	width: 100%;
	max-width: none !important;
}

.route99-service-area-heading > .wp-block-shortcode {
	width: 100%;
}

.route99-service-area-heading {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.route99-service-area-copy {
	min-width: 0;
}

.route99-service-area-title {
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-service-area-title span {
	font-style: italic;
}

.route99-service-area-description {
	margin: 0.5rem 0 0;
	color: #4c575f;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

/* Location pills */

.route99-service-area-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.route99-service-area-button {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 0.875rem;
	border: 1px solid #ded6d0;
	border-radius: 999px;
	background-color: #ffffff;
	color: #313c44;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	box-shadow: 0 1px 3px rgba(28, 43, 58, 0.06);
	transition:
		background-color 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		border-color 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		color 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

.route99-service-area-button i {
	color: #c87a15;
	font-size: 0.625rem;
	line-height: 1;
	transition: color 0.22s ease;
}

.route99-service-area-button:hover,
.route99-service-area-button:focus,
.route99-service-area-button.is-active {
	border-color: #c87a15;
	background-color: #061d2b;
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(28, 43, 58, 0.16);
	transform: translateY(-2px);
}

.route99-service-area-button:hover i,
.route99-service-area-button:focus i,
.route99-service-area-button.is-active i {
	color: #e09036;
}

.route99-service-area-button:focus-visible {
	outline: 2px solid #c87a15;
	outline-offset: 3px;
}

/* Map */

.route99-service-map {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	background-color: #e5e3df;
	z-index: 1;
}

.route99-service-map.leaflet-container {
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-service-map .leaflet-container {
	width: 100%;
	height: 100%;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-service-map .leaflet-control-zoom {
	border: 0;
	box-shadow: 0 4px 16px rgba(6, 29, 43, 0.18);
}

.route99-service-map .leaflet-control-zoom a {
	width: 36px;
	height: 36px;
	border-bottom-color: #ded6d0;
	background-color: #ffffff;
	color: #061d2b;
	font-size: 20px;
	line-height: 36px;
}

.route99-service-map .leaflet-control-zoom a:hover {
	background-color: #f9f4f0;
	color: #c87a15;
}

.route99-service-map .leaflet-control-attribution {
	background-color: rgba(255, 255, 255, 0.85);
	font-size: 10px;
}

/* Small area marker */

.route99-map-marker {
	width: 10px;
	height: 10px;
	border: 2.5px solid #d4882a;
	border-radius: 50%;
	background-color: #1c2b3a;
	box-shadow: 0 2px 6px rgba(28, 43, 58, 0.35);
	transition:
		width 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		height 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		background-color 0.22s cubic-bezier(0.23, 1, 0.32, 1),
		transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

.route99-map-marker.is-active {
	width: 16px;
	height: 16px;
	background-color: #c87a15;
	transform: translate(-3px, -3px);
}

/* Main business marker */

.route99-map-main-marker {
	position: relative;
	width: 42px;
	height: 42px;
	border: 3px solid #d4882a;
	border-radius: 50% 50% 50% 0;
	background-color: #1c2b3a;
	box-shadow: 0 4px 12px rgba(28, 43, 58, 0.4);
	transform: rotate(-45deg);
}

.route99-map-main-marker-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #ffffff;
	transform: rotate(45deg);
}

.route99-map-main-marker-inner i {
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
}

/* Leaflet popup */

.route99-service-map .leaflet-popup-content-wrapper {
	border-radius: 0.75rem;
	background-color: #061d2b;
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(6, 29, 43, 0.28);
}

.route99-service-map .leaflet-popup-content {
	margin: 0.875rem 1rem;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
}

.route99-service-map .leaflet-popup-tip {
	background-color: #061d2b;
}

.route99-service-map .leaflet-popup-close-button {
	color: rgba(255, 255, 255, 0.65);
}

.route99-service-map .leaflet-popup-close-button:hover {
	color: #e09036;
}

.route99-service-map .route99-location-map-popup .leaflet-popup-content-wrapper {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
}

.route99-service-map .route99-location-map-popup {
	min-width: 490px;
}

.route99-service-map .route99-location-map-popup .leaflet-popup-close-button {
	z-index: 3;
	width: 2rem;
	height: 2rem;
	color: #ffffff;
	font-size: 1.25rem;
}

.route99-service-map .route99-location-map-popup .leaflet-popup-content {
	width: auto !important;
	margin: 0;
}

.route99-map-popup-card {
	background: #061d2b;
	color: #ffffff;
}

.route99-map-popup-image-wrap {
	position: relative;
	height: 8.5rem;
	overflow: hidden;
	background: #143c4e;
}

.route99-map-popup-image-wrap::after {
	position: absolute;
	inset: auto 0 0;
	height: 55%;
	background: linear-gradient(transparent, rgba(6, 29, 43, 0.58));
	content: "";
	pointer-events: none;
}

.route99-map-popup-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-map-popup-body {
	padding: 1.1rem 1.15rem 1.2rem;
}

.route99-map-popup-eyebrow {
	display: block;
	margin-bottom: 0.35rem;
	color: #eca760;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-map-popup-body h3 {
	margin: 0 0 0.5rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	line-height: 1.2;
}

.route99-map-popup-body p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 0.9rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.77rem;
	font-weight: 400;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.route99-map-popup-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #eca760;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.route99-map-popup-link:hover,
.route99-map-popup-link:focus {
	color: #ffffff;
}

.route99-map-popup-link i {
	transition: transform 0.2s ease;
}

.route99-map-popup-link:hover i,
.route99-map-popup-link:focus i {
	transform: translateX(0.2rem);
}

/* Desktop */

@media (min-width: 1024px) {
	.route99-service-area-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-service-area-heading {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.route99-service-area-title {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.route99-service-area-buttons {
		justify-content: flex-end;
		max-width: 580px;
	}

	.route99-service-area-heading > .wp-block-shortcode {
		max-width: 580px !important;
	}
}

/* Mobile */

@media (max-width: 639.98px) {
	.route99-service-area-container {
		padding-top: 3rem;
	}

	.route99-service-area-title {
		font-size: 1.75rem;
	}

	.route99-service-map {
		height: 430px;
	}

	.route99-service-map .route99-location-map-popup {
		width: calc(100vw - 3rem);
		min-width: 0;
		max-width: calc(100vw - 3rem);
	}

	.route99-service-area-button {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
}








/*
 * Route 99 Contact Section
 */

 .route99-contact-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #f9f4f0;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-contact-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-contact-row {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
}

/* Left content */

.route99-contact-title {
	margin: 0 0 1.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-contact-title span {
	font-style: italic;
}

.route99-contact-intro {
	margin: 0 0 2rem;
	color: #4c575f;
	font-size: 1.125rem;
	line-height: 1.625;
}

.route99-contact-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.route99-contact-detail {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: inherit;
	text-decoration: none;
}

.route99-contact-detail:hover,
.route99-contact-detail:focus {
	color: inherit;
	text-decoration: none;
}

.route99-contact-detail-icon {
	display: flex;
	flex: 0 0 3rem;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background-color: #061d2b;
	color: #c87a15;
}

.route99-contact-detail-icon i {
	font-size: 1.25rem;
	line-height: 1;
}

.route99-contact-detail-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.route99-contact-detail-label {
	margin-bottom: 0.125rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-contact-phone-number {
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.75rem;
	transition: color 0.15s ease;
}

.route99-contact-phone:hover .route99-contact-phone-number,
.route99-contact-phone:focus .route99-contact-phone-number {
	color: #c87a15;
}

.route99-contact-area {
	color: #061d2b;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
}

/* Guarantee panel */

.route99-contact-guarantee {
	margin-top: 2.5rem;
	padding: 1.5rem;
	border-radius: 0.75rem;
	background-color: #061d2b;
	color: #ffffff;
}

.route99-contact-guarantee-title {
	margin-bottom: 0.75rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-contact-guarantee-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.route99-contact-guarantee-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.route99-contact-guarantee-item i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 0.875rem;
	line-height: 1;
}

/* Form card */

.route99-contact-form-card {
	padding: 2rem;
	border: 1px solid #ded6d0;
	border-radius: 1rem;
	background-color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(6, 29, 43, 0.08);
}

.route99-contact-form-title {
	margin: 0 0 1.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
}

.route99-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.route99-contact-form-shell {
	padding: 2rem;
	border: 1px solid #ded6d0;
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(6, 29, 43, 0.08);
}

.route99-contact-form .wpcf7-form-control-wrap {
	display: block;
}

.route99-contact-form .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.route99-contact-form .wpcf7-response-output {
	margin: 0;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.8rem;
}

.route99-contact-upload {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.25rem 0.85rem;
	min-height: 8.5rem;
	align-content: center;
	padding: 1.25rem;
	border: 2px dashed #d8cdc3;
	border-radius: 0.75rem;
	background: #f9f4f0;
	overflow: hidden;
}

.route99-contact-upload-icon {
	display: inline-flex;
	grid-row: 1 / span 2;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(200, 122, 21, 0.12);
	color: #c87a15;
	font-size: 1.1rem;
	pointer-events: none;
}

.route99-contact-upload strong,
.route99-contact-upload small {
	display: block;
	pointer-events: none;
}

.route99-contact-upload strong {
	color: #263e4b;
	font-size: 0.875rem;
}

.route99-contact-upload small {
	color: #737d84;
	font-size: 0.72rem;
	line-height: 1.45;
}

.route99-contact-upload .wpcf7-form-control-wrap {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.route99-contact-upload input[type="file"] {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.route99-contact-upload .wpcf7-not-valid-tip {
	position: absolute;
	right: 1rem;
	bottom: 0.4rem;
	left: 1rem;
	text-align: center;
}

.route99-contact-file-status {
	grid-column: 1 / -1;
	margin-top: 0.5rem;
	color: #c87a15;
	font-size: 0.72rem;
	font-weight: 700;
	text-align: center;
	pointer-events: none;
}

.route99-contact-submit-wrap {
	position: relative;
}

.route99-contact-submit-wrap .route99-contact-submit {
	padding-right: 3rem;
}

.route99-contact-submit-wrap > i {
	position: absolute;
	top: 50%;
	right: 1.25rem;
	color: #ffffff;
	transform: translateY(-50%);
	pointer-events: none;
}

.route99-contact-name-row {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 0;
}

.route99-contact-name-row:not(.row) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.route99-form-group {
	display: flex;
	flex-direction: column;
}

.route99-form-group label {
	margin-bottom: 0.375rem;
	color: #4c575f;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.route99-form-group input,
.route99-form-group select,
.route99-form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ded6d0;
	border-radius: 0.5rem;
	background-color: #f9f4f0;
	color: #061d2b;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.875rem;
	line-height: 1.25rem;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease;
}

.route99-form-group input::placeholder,
.route99-form-group textarea::placeholder {
	color: rgba(76, 87, 95, 0.65);
}

.route99-form-group input:focus,
.route99-form-group select:focus,
.route99-form-group textarea:focus {
	border-color: #c87a15;
	outline: 0;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(200, 122, 21, 0.4);
}

.route99-form-group textarea {
	resize: none;
}

.route99-contact-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem;
	border: 0;
	border-radius: 0.5rem;
	background-color: #c87a15;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: 0.02em;
	transition:
		background-color 0.2s ease,
		transform 0.16s ease;
}

.route99-contact-submit:hover,
.route99-contact-submit:focus {
	background-color: #e09036;
	color: #ffffff;
}

.route99-contact-submit:active {
	transform: scale(0.97);
}

.route99-contact-submit i {
	font-size: 1rem;
	line-height: 1;
}

/* Desktop */

@media (min-width: 1024px) {
	.route99-contact-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-contact-row {
		--bs-gutter-x: 5rem;
		--bs-gutter-y: 0;
	}

	.route99-contact-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Tailwind lg begins at 1024px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-contact-row > .col-lg-6 {
		width: 100%;
	}
}

/* Mobile */

@media (max-width: 639.98px) {
	.route99-contact-title {
		font-size: 2rem;
	}

	.route99-contact-intro {
		font-size: 1rem;
		line-height: 1.625rem;
	}

	.route99-contact-form-card {
		padding: 1.5rem;
	}

	.route99-contact-form-shell {
		padding: 1.5rem;
	}

	.route99-contact-name-row:not(.row),
	.route99-contact-upload {
		grid-template-columns: 1fr;
	}

	.route99-contact-upload-icon {
		grid-row: auto;
	}

	.route99-contact-file-status {
		grid-column: auto;
	}

	.route99-contact-name-row > .col-6 {
		width: 100%;
	}

	.route99-contact-name-row {
		--bs-gutter-y: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-contact-phone-number,
	.route99-form-group input,
	.route99-form-group select,
	.route99-form-group textarea,
	.route99-contact-submit {
		transition: none;
	}
}











/*
 * Route 99 Footer
 */

 .route99-footer {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: #000f1b;
	color: #ffffff;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-footer-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route99-footer-brand-name,
.route99-footer-location-label {
	display: block;
}

.route99-footer-brand-name {
	margin-bottom: 0.2rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.15rem;
}

.route99-footer-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.6rem 1.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-footer-menu li {
	margin: 0;
}

.route99-footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-footer-menu a:hover,
.route99-footer-menu a:focus,
.route99-footer-menu .current-menu-item > a {
	color: #eca760;
}

.route99-footer-column .route99-footer-menu {
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 0.5rem;
}

.route99-footer-column .route99-footer-menu a {
	display: inline-flex;
	padding: 0.08rem 0;
	font-weight: 400;
}

/* =========================================================
   Main footer grid
   ========================================================= */

.route99-footer-main {
	--bs-gutter-x: 2.5rem;
	--bs-gutter-y: 2.5rem;

	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route99-footer-widget-column,
.route99-footer-widget-column .widget,
.route99-footer-widget-column .wp-block-group {
	min-width: 0;
}

.route99-footer-widget-column .widget {
	margin-bottom: 1.5rem;
}

.route99-footer-widget-column .widget:last-child {
	margin-bottom: 0;
}

.route99-footer-widget-column .widget-title,
.route99-footer-widget-column .wp-block-heading,
.route99-footer-widget-column h2,
.route99-footer-widget-column h3 {
	margin: 0 0 1rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-footer-widget-column,
.route99-footer-widget-column p,
.route99-footer-widget-column li {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.875rem;
	line-height: 1.65;
}

.route99-footer-widget-column ul,
.route99-footer-widget-column ol {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-footer-widget-column a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
}

.route99-footer-widget-column a:hover,
.route99-footer-widget-column a:focus {
	color: #eca760;
}

.route99-footer-brand,
.route99-footer-column {
	height: 100%;
}

.route99-footer-trust-column p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	line-height: 1.65;
}

.route99-footer-trust-list {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 1.1rem;
	padding: 0;
	list-style: none;
}

.route99-footer-trust-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
}

.route99-footer-trust-list i,
.route99-footer-phone-cta i {
	color: #c87a15;
}

.route99-footer-phone-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.route99-footer-phone-cta:hover,
.route99-footer-phone-cta:focus {
	color: #eca760;
}

/* =========================================================
   Brand column
   ========================================================= */

.route99-footer-logo-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.route99-footer-logo {
	display: block;
	width: 5rem;
	height: 5rem;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.route99-footer-location-label {
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-footer-description {
	max-width: 20rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.625;
}

/* =========================================================
   Footer headings
   ========================================================= */

.route99-footer-heading {
	margin: 0 0 1rem;
	color: #c87a15;
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* =========================================================
   Services list
   ========================================================= */

.route99-footer-service-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-footer-service-list li {
	margin: 0;
}

.route99-footer-service-list a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-footer-service-list a:hover,
.route99-footer-service-list a:focus {
	color: #c87a15;
	text-decoration: none;
}

/* =========================================================
   Contact column
   ========================================================= */

.route99-footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.route99-footer-contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.route99-footer-contact-item-top {
	align-items: flex-start;
}

.route99-footer-contact-item i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 0.875rem;
	line-height: 1;
}

.route99-footer-contact-item-top i {
	margin-top: 0.125rem;
}

.route99-footer-contact-item a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-footer-contact-item a:hover,
.route99-footer-contact-item a:focus {
	color: #c87a15;
	text-decoration: none;
}

/* =========================================================
   Credentials
   ========================================================= */

.route99-footer-credentials {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 0.5rem;
}

.route99-footer-credential {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.route99-footer-credential i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 0.8125rem;
	line-height: 1;
}

/* =========================================================
   Footer bottom
   ========================================================= */

.route99-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1.5rem;
	color: rgba(255, 255, 255, 0.3);
	font-family: var(--route99-font-mono, "DM Mono", "Courier New", monospace);
	font-size: 0.75rem;
	line-height: 1rem;
	text-align: center;
}

/* =========================================================
   Original responsive breakpoints
   ========================================================= */

@media (min-width: 640px) {
	.route99-footer-bottom {
		flex-direction: row;
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.route99-footer-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-footer-main {
		--bs-gutter-y: 0;
	}
}

/*
 * Bootstrap changes to col-lg at 992px.
 * The original Tailwind layout changes at 1024px.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-footer-main > .col-lg-4 {
		width: 100%;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991.98px) {
	.route99-footer-top {
		grid-template-columns: 1fr;
	}

	.route99-footer-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 639.98px) {
	.route99-footer-top {
		grid-template-columns: 1fr;
	}

	.route99-footer-menu {
		justify-content: flex-start;
		gap: 0.75rem 1.1rem;
	}

	.route99-footer-logo-row {
		align-items: flex-start;
	}

	.route99-footer-location-label {
		padding-top: 0.5rem;
	}

	.route99-footer-bottom {
		align-items: flex-start;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-footer-service-list a,
	.route99-footer-contact-item a {
		transition: none;
	}
}




/*
 * Service page hero
 * Reuses existing:
 * - .container
 * - .btn-amber
 * - global Fraunces / DM Sans / DM Mono fonts
 */

 .route99-service-hero {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	background-color: #061d2b;
}

.route99-service-hero-background {
	position: absolute;
	inset: 0;
}

.route99-service-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.route99-service-hero-overlay-horizontal,
.route99-service-hero-overlay-bottom {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.route99-service-hero-overlay-horizontal {
	background:
		linear-gradient(
			to right,
			rgba(0, 15, 27, 0.95) 0%,
			rgba(0, 15, 27, 0.75) 50%,
			rgba(0, 15, 27, 0.3) 100%
		);
}

.route99-service-hero-overlay-bottom {
	background:
		linear-gradient(
			to top,
			rgba(0, 15, 27, 0.6) 0%,
			rgba(0, 15, 27, 0) 100%
		);
}

.route99-service-hero-container {
	position: relative;
	z-index: 2;
	padding-top: 5rem;
	padding-bottom: 7rem;
}

/* Breadcrumb */

.route99-service-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.5);
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.route99-service-breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-service-breadcrumb a:hover,
.route99-service-breadcrumb a:focus {
	color: #c87a15;
}

.route99-service-breadcrumb i {
	font-size: 0.875rem;
	line-height: 1;
}

.route99-service-breadcrumb span {
	color: #c87a15;
}

/* Main content */

.route99-service-hero-content {
	max-width: 42rem;
}

.route99-service-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding: 0.375rem 1rem;
	border: 1px solid rgba(200, 122, 21, 0.4);
	border-radius: 999px;
	background-color: rgba(200, 122, 21, 0.2);
	color: #eca760;
}

.route99-service-hero-badge i {
	font-size: 0.75rem;
	line-height: 1;
}

.route99-service-hero-badge span {
	font-family: "DM Mono", "Courier New", monospace;
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-service-hero-title {
	margin: 0 0 1.5rem;
	color: #ffffff;
	font-family: "Fraunces", Georgia, serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.05;
}

.route99-service-hero-title span {
	color: #eca760;
	font-style: italic;
}

.route99-service-hero-description {
	max-width: 36rem;
	margin: 0 0 2rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.125rem;
	line-height: 1.625;
}

/* Buttons */

.route99-service-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.route99-service-hero-primary-button,
.route99-service-hero-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	border-radius: 0.25rem;
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration: none;
}

.route99-service-hero-primary-button:hover,
.route99-service-hero-primary-button:focus {
	color: #ffffff;
	text-decoration: none;
}

.route99-service-hero-secondary-button {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: transparent;
	color: #ffffff;
	font-weight: 500;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.route99-service-hero-secondary-button:hover,
.route99-service-hero-secondary-button:focus {
	border-color: rgba(255, 255, 255, 0.45);
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
}

/* Credentials */

.route99-service-hero-credentials {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.route99-service-hero-credential {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.route99-service-hero-credential i {
	flex-shrink: 0;
	color: #c87a15;
	font-size: 1rem;
	line-height: 1;
}

/* Bottom curve */

.route99-service-hero-curve {
	position: relative;
	z-index: 3;
	height: 3rem;
	background-color: #f9f4f0;
}

.route99-service-hero-curve svg {
	position: absolute;
	top: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 3rem;
}

/* Original Tailwind lg breakpoint */

@media (min-width: 1024px) {
	.route99-service-hero {
		padding-top: 6rem;
	}

	.route99-service-hero-title {
		font-size: 3.75rem;
	}

	.route99-service-hero-description {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

/* Mobile */

@media (max-width: 639.98px) {
	.route99-service-hero-container {
		padding-top: 4rem;
		padding-bottom: 5rem;
	}

	.route99-service-hero-title {
		font-size: 2.5rem;
	}

	.route99-service-hero-description {
		font-size: 1rem;
	}

	.route99-service-hero-actions {
		flex-direction: column;
		margin-bottom: 2rem;
	}

	.route99-service-hero-primary-button,
	.route99-service-hero-secondary-button {
		width: 100%;
	}

	.route99-service-hero-credentials {
		flex-direction: column;
		gap: 0.75rem;
	}
}





/*
 * Bathroom services section
 * Existing shared CSS is intentionally not repeated.
 */

 .route99-bathroom-services {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #ffffff;
}

.route99-bathroom-heading {
	margin-bottom: 3.5rem;
}

.route99-bathroom-title {
	max-width: 36rem;
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-bathroom-title span {
	font-style: italic;
}

.route99-bathroom-intro {
	max-width: 42rem;
	margin: 1rem 0 0;
	color: #4c575f;
	font-size: 1.125rem;
	line-height: 1.625;
}

.route99-bathroom-grid {
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 2rem;
}

.route99-bathroom-column {
	display: flex;
}

.route99-bathroom-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
}

.route99-bathroom-card-image-wrap {
	position: relative;
	height: 13rem;
	overflow: hidden;
}

.route99-bathroom-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.route99-bathroom-card:hover .route99-bathroom-card-image {
	transform: scale(1.05);
}

.route99-bathroom-card-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(6, 29, 43, 0.55) 0%,
			rgba(6, 29, 43, 0) 100%
		);
	pointer-events: none;
}

.route99-bathroom-card-accent {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0.25rem;
	background-color: #c87a15;
}

.route99-bathroom-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.5rem;
}

.route99-bathroom-card-title {
	margin: 0 0 0.75rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-bathroom-card-description {
	margin: 0 0 1rem;
	color: #4c575f;
	font-size: 0.875rem;
	line-height: 1.625;
}

.route99-bathroom-details-button {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #c87a15;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
	text-align: left;
	transition: color 0.15s ease;
}

.route99-bathroom-details-button:hover,
.route99-bathroom-details-button:focus {
	color: #e09036;
}

.route99-bathroom-details-button i {
	font-size: 0.9375rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.route99-bathroom-details-button:not(.collapsed) i {
	transform: rotate(180deg);
}

.route99-bathroom-details-inner {
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border-left: 2px solid #c87a15;
	background-color: #f9f4f0;
}

.route99-bathroom-details-inner p {
	margin: 0;
	color: #4c575f;
	font-size: 0.8125rem;
	line-height: 1.55;
}

.route99-bathroom-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #eee9e5;
}

.route99-bathroom-quote-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #061d2b;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

.route99-bathroom-quote-link i {
	font-size: 0.875rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.route99-bathroom-quote-link:hover,
.route99-bathroom-quote-link:focus {
	color: #c87a15;
	text-decoration: none;
}

.route99-bathroom-quote-link:hover i,
.route99-bathroom-quote-link:focus i {
	transform: translateX(0.25rem);
}

@media (min-width: 1024px) {
	.route99-bathroom-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Preserve the original Tailwind 1024px three-column breakpoint.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-bathroom-column {
		width: 100%;
	}
}

@media (max-width: 639.98px) {
	.route99-bathroom-heading {
		margin-bottom: 2.5rem;
	}

	.route99-bathroom-title {
		font-size: 2rem;
	}

	.route99-bathroom-intro {
		font-size: 1rem;
	}

	.route99-bathroom-card-image-wrap {
		height: 12rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-bathroom-card-image,
	.route99-bathroom-details-button,
	.route99-bathroom-details-button i,
	.route99-bathroom-quote-link,
	.route99-bathroom-quote-link i {
		transition: none;
	}
}



/*
 * Kitchen section background.
 * All other styles reuse the Bathroom Services section CSS.
 */

 .route99-kitchen-services {
	background-color: #f9f4f0;
}

/*
 * Reusable included-items list.
 * Keep this because it can also be used inside the bathroom cards.
 */

.route99-service-included-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-service-included-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: #4c575f;
	font-size: 0.8125rem;
	line-height: 1.5;
}

.route99-service-included-list i {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: #c87a15;
	font-size: 0.75rem;
	line-height: 1;
}





/*
 * How It Works section
 * Existing shared classes are intentionally not repeated.
 */

.route99-process-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #061d2b;
}

.route99-process-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

/* Preserve the Bootstrap container width inside Gutenberg constrained layouts. */
.is-layout-constrained > .route99-process-section,
.route99-process-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-process-section.is-layout-constrained > .route99-process-container,
.route99-process-section > .route99-process-container.is-layout-constrained,
.route99-process-container.is-layout-constrained > .route99-process-heading,
.route99-process-container.is-layout-constrained > .route99-process-grid {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-process-grid > .route99-process-column,
.route99-process-step-content.is-layout-flow > * {
	margin-block-start: 0;
}

.route99-process-heading {
	margin-bottom: 3.5rem;
	text-align: center;
}

.route99-process-eyebrow {
	justify-content: center;
}

.route99-process-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-process-title span {
	color: #eca760;
	font-style: italic;
}

.route99-process-intro {
	max-width: 42rem;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.125rem;
	line-height: 1.625;
}

.route99-process-grid {
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 2rem;
}

.route99-process-column {
	position: relative;
}

.route99-process-step {
	position: relative;
	height: 100%;
}

.route99-process-step-content {
	position: relative;
	z-index: 2;
}

.route99-process-step-top {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.route99-process-icon {
	display: flex;
	flex: 0 0 4rem;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid rgba(200, 122, 21, 0.3);
	border-radius: 50%;
	background-color: rgba(200, 122, 21, 0.15);
	color: #c87a15;
}

.route99-process-icon i {
	font-size: 1.5rem;
	line-height: 1;
}

.route99-process-number {
	color: rgba(255, 255, 255, 0.1);
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
}

.route99-process-step-title {
	margin: 0 0 0.5rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
}

.route99-process-step-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
	line-height: 1.625;
}

.route99-process-connector {
	display: none;
}

@media (min-width: 1024px) {
	.route99-process-title {
		font-size: 3rem;
		line-height: 1;
	}

	.route99-process-connector {
		position: absolute;
		top: 2rem;
		left: calc(100% - 1rem);
		z-index: 0;
		display: block;
		width: 2rem;
		height: 1px;
		background-color: rgba(200, 122, 21, 0.3);
	}
}

/*
 * Keep two columns until the original Tailwind 1024px breakpoint.
 */
@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-process-column {
		width: 50%;
	}
}

/*
 * Tailwind sm starts at 640px.
 */
@media (min-width: 576px) and (max-width: 639.98px) {
	.route99-process-column {
		width: 100%;
	}
}

@media (max-width: 639.98px) {
	.route99-process-heading {
		margin-bottom: 2.5rem;
	}

	.route99-process-title {
		font-size: 2rem;
	}

	.route99-process-intro {
		font-size: 1rem;
	}

	.route99-process-step-top {
		margin-bottom: 0.875rem;
	}

	.route99-process-icon {
		flex-basis: 3.5rem;
		width: 3.5rem;
		height: 3.5rem;
	}

	.route99-process-icon i {
		font-size: 1.25rem;
	}
}






/*
 * Kitchen & Bathroom FAQ section
 * Existing shared classes are intentionally not repeated.
 */

.route99-faq-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #f9f4f0;
}

.route99-faq-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

/* Preserve the original section width inside Gutenberg constrained layouts. */
.is-layout-constrained > .route99-faq-section,
.route99-faq-section.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-faq-section.is-layout-constrained > .route99-faq-container,
.route99-faq-section > .route99-faq-container.is-layout-constrained,
.route99-faq-container.is-layout-constrained > .route99-faq-layout {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-faq-layout > [class*="route99-faq-"] {
	margin-block-start: 0;
}

.route99-faq-accordion-column > .wp-block-shortcode {
	width: 100%;
	max-width: none !important;
	margin-block-start: 0;
}

.route99-faq-layout {
	--bs-gutter-x: 4rem;
	--bs-gutter-y: 3rem;

	align-items: flex-start;
}

.route99-faq-title {
	margin: 0 0 1.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-faq-description {
	margin: 0 0 2rem;
	color: #4c575f;
	font-size: 1.125rem;
	line-height: 1.625;
}

.route99-faq-call-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 16px 24px;
	border: 1px solid #c87a15;
	border-radius: 0.25rem;
	background: #c87a15;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.16s ease;
}

.route99-faq-call-button i {
	font-size: 16px;
	line-height: 1;
}

.route99-faq-call-button:hover,
.route99-faq-call-button:focus {
	border-color: #e09036;
	background: #e09036;
	color: #ffffff !important;
	text-decoration: none;
}

.route99-faq-call-button:active {
	transform: scale(0.97);
}

/* Sticky introduction */

@media (min-width: 1024px) {
	.route99-faq-intro {
		position: sticky;
		top: 7rem;
	}
}

/* Accordion */

.route99-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.route99-faq-item {
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
}

.route99-faq-item:first-of-type,
.route99-faq-item:last-of-type {
	border-radius: 0.75rem;
}

.route99-faq-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.5rem;
	border: 0;
	background-color: #ffffff;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.375;
	text-align: left;
	box-shadow: none;
}

.route99-faq-button:not(.collapsed) {
	background-color: #ffffff;
	color: #061d2b;
	box-shadow: none;
}

.route99-faq-button:focus {
	border-color: transparent;
	box-shadow: inset 0 0 0 2px rgba(200, 122, 21, 0.35);
}

.route99-faq-button::after {
	flex-shrink: 0;
	width: 1.125rem;
	height: 1.125rem;
	margin-left: auto;
	background-image: none;
	color: #c87a15;
	font-family: "bootstrap-icons";
	font-size: 1.125rem;
	font-weight: normal;
	line-height: 1;
	content: "\f282";
	transform: rotate(0deg);
	transition: transform 0.2s ease;
}

.route99-faq-button:not(.collapsed)::after {
	background-image: none;
	transform: rotate(180deg);
}

.route99-faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: #4c575f;
	font-size: 0.875rem;
	line-height: 1.625;
}

.route99-faq-answer > :last-child {
	margin-bottom: 0;
}

/* Original Tailwind desktop breakpoint */

@media (min-width: 1024px) {

	.route99-faq-title {
		font-size: 3rem;
		line-height: 1;
	}
}

/*
 * Bootstrap switches col-lg at 992px.
 * Keep the original one-column layout until 1024px.
 */

@media (min-width: 992px) and (max-width: 1023.98px) {
	.route99-faq-layout > .col-lg-6 {
		width: 100%;
	}
}

@media (max-width: 639.98px) {
	.route99-faq-title {
		font-size: 2rem;
	}

	.route99-faq-description {
		font-size: 1rem;
	}

	.route99-faq-call-button {
		width: 100%;
	}

	.route99-faq-button {
		padding: 1.25rem;
	}

	.route99-faq-answer {
		padding-right: 1.25rem;
		padding-bottom: 1.25rem;
		padding-left: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-faq-button::after {
		transition: none;
	}
}





/*
 * Kitchen & Bathroom CTA
 * Existing shared classes are intentionally not repeated.
 */

.route99-service-cta {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #c87a15;
}

/* Let a Shortcode block retain the CTA's full section width. */
.is-layout-constrained > .wp-block-shortcode:has(> .route99-service-cta) {
	width: 100%;
	max-width: none !important;
}

.route99-service-cta > .container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.route99-service-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.route99-service-cta-copy {
	width: 100%;
}

.route99-service-cta-title {
	margin: 0 0 0.75rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-service-cta-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	line-height: 1.625;
}

.route99-service-cta-actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.route99-service-cta-phone,
.route99-service-cta-message {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 0.25rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.16s ease;
}

.route99-service-cta-phone {
	background-color: #ffffff;
	color: #061d2b;
}

.route99-service-cta-phone:hover,
.route99-service-cta-phone:focus {
	background-color: #ede6e1;
	color: #061d2b;
	text-decoration: none;
}

.route99-service-cta-message {
	background-color: #061d2b;
	color: #ffffff;
}

.route99-service-cta-message:hover,
.route99-service-cta-message:focus {
	background-color: #152b3b;
	color: #ffffff;
	text-decoration: none;
}

.route99-service-cta-phone:active,
.route99-service-cta-message:active {
	transform: scale(0.97);
}

@media (min-width: 640px) {
	.route99-service-cta-actions {
		flex-direction: row;
		width: auto;
	}
}

@media (min-width: 1024px) {
	.route99-service-cta-inner {
		flex-direction: row;
	}

	.route99-service-cta-title {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.route99-service-cta-copy {
		max-width: 46rem;
	}
}

@media (max-width: 639.98px) {
	.route99-service-cta-inner {
		align-items: stretch;
	}

	.route99-service-cta-title {
		font-size: 1.75rem;
	}

	.route99-service-cta-description {
		font-size: 1rem;
	}

	.route99-service-cta-phone,
	.route99-service-cta-message {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-service-cta-phone,
	.route99-service-cta-message {
		transition: none;
	}
}






/*
 * Related services section
 * Existing shared classes are intentionally not repeated.
 */

.route99-related-services {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: #ede6e1;
}

.route99-related-services-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

/* Preserve the original card-grid width inside Gutenberg layouts. */
.is-layout-constrained > .route99-related-services,
.route99-related-services.alignfull {
	width: 100%;
	max-width: none !important;
}

.route99-related-services.is-layout-constrained > .route99-related-services-container,
.route99-related-services > .route99-related-services-container.is-layout-constrained {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.route99-related-services-container.is-layout-constrained > .route99-related-services-heading,
.route99-related-services-container.is-layout-constrained > .wp-block-shortcode,
.route99-related-services-container > .wp-block-shortcode {
	width: 100%;
	max-width: none !important;
}

.route99-related-services-heading {
	margin-bottom: 3rem;
}

.route99-related-services-title {
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-related-services-grid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

.route99-related-services-column {
	display: flex;
}

.route99-related-service-card {
	display: block;
	width: 100%;
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
	color: inherit;
	text-decoration: none;
}

.route99-related-service-card:hover,
.route99-related-service-card:focus {
	color: inherit;
	text-decoration: none;
}

.route99-related-service-image-wrap {
	position: relative;
	height: 10rem;
	overflow: hidden;
}

.route99-related-service-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.route99-related-service-card:hover .route99-related-service-image,
.route99-related-service-card:focus .route99-related-service-image {
	transform: scale(1.05);
}

.route99-related-service-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(6, 29, 43, 0.5) 0%,
			rgba(6, 29, 43, 0) 100%
		);
	pointer-events: none;
}

.route99-related-service-accent {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0.25rem;
	background-color: #c87a15;
}

.route99-related-service-body {
	padding: 1.25rem;
}

.route99-related-service-title {
	margin: 0 0 0.25rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.route99-related-service-description {
	margin: 0;
	color: #4c575f;
	font-size: 0.875rem;
	line-height: 1.5;
}

.route99-related-service-link {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.75rem;
	color: #c87a15;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
}

.route99-related-service-link i {
	font-size: 0.8125rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.route99-related-service-card:hover .route99-related-service-link i,
.route99-related-service-card:focus .route99-related-service-link i {
	transform: translateX(0.25rem);
}



/* =========================================================
 * Kitchen & Bathroom SEO service-page pattern
 * ========================================================= */

.route99-kb-intro-section,
.route99-category-services-section,
.route99-category-projects-section,
.route99-kb-feature-section,
.route99-service-offerings-section,
.route99-kb-fit-section,
.route99-kb-details-section,
.route99-kb-local-section {
	 
	padding-top: 60px;
	padding-bottom: 60px;
	 
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-kb-intro-section,
.route99-kb-details-section {
	background-color: #f9f4f0;
}

.route99-kb-feature-section,
.route99-kb-local-section {
	background-color: #ffffff;
}

.route99-category-services-section {
	background: #ffffff;
}

.route99-category-projects-section {
	background: #061d2b;
}

.route99-category-projects-section .route99-kb-section-title,
.route99-category-projects-section .route99-kb-lead {
	color: #ffffff;
}

.route99-category-projects-section .route99-kb-lead {
	opacity: 0.78;
}

.route99-category-service-group + .route99-category-service-group {
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid #ded6d0;
}

.route99-category-service-group > .route99-services-grid,
.route99-category-service-group > .wp-block-shortcode,
.route99-category-projects-section .route99-before-after-gallery {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.route99-service-offerings-section {
	background: #ffffff;
}

.route99-service-offerings-heading {
	max-width: 58rem;
	margin-bottom: 2.5rem;
}

.route99-service-offerings-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.5rem;
}

.route99-service-offering {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.4rem;
	border: 1px solid #e4dcd5;
	border-radius: 0.75rem;
	background: #fdfbf9;
}

.route99-service-offering > i {
	flex: 0 0 auto;
	margin-top: 0.15rem;
	color: #c87a15;
	font-size: 1.2rem;
}

.route99-service-offering h3 {
	margin: 0 0 0.4rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
}

.route99-service-offering p {
	margin: 0;
	color: #4c575f;
	font-size: 0.9rem;
	line-height: 1.65;
}

.route99-kb-fit-section {
	background-color: #efe7df;
}

.route99-kb-container {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-kb-intro {
	max-width: 56rem;
}

.route99-kb-section-title {
	max-width: 48rem;
	margin: 0;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.route99-kb-section-title span {
	color: #c87a15;
	font-style: italic;
}

.route99-kb-lead {
	max-width: 52rem;
	margin: 1.25rem 0 1rem;
	color: #313c44;
	font-size: 1.125rem;
	line-height: 1.7;
}

.route99-kb-intro > p:not(.route99-kb-lead),
.route99-kb-feature-content > p,
.route99-kb-local-copy > p {
	color: #4c575f;
	font-size: 1rem;
	line-height: 1.75;
}

.route99-kb-local-row {
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 2rem;
}

.route99-kb-feature-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	margin: 0;
}

.route99-kb-feature-column {
	display: flex;
	width: auto;
	max-width: none;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	border: 1px solid #ded6d0;
	border-radius: 1rem;
	background-color: #ffffff;
	box-shadow: 0 10px 30px rgba(6, 29, 43, 0.07);
}

.route99-kb-feature-image-wrap,
.route99-kb-local-image-wrap {
	width: 100%;
	margin: 0;
	overflow: hidden;
}

.route99-kb-feature-image-wrap {
	height: 19rem;
}

.route99-kb-feature-image,
.route99-kb-local-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.route99-kb-feature-column > .wp-block-shortcode {
	width: 100%;
	margin: 0;
}

.route99-image-placeholder,
.route99-hero-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	background: linear-gradient(135deg, #102b3a, #061d2b);
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
}

.route99-image-placeholder i,
.route99-hero-image-placeholder i {
	color: #c87a15;
	font-size: 2rem;
}

.route99-image-placeholder code,
.route99-hero-image-placeholder code {
	max-width: calc(100% - 2rem);
	padding: 0.4rem 0.65rem;
	border-radius: 0.35rem;
	background: rgba(255, 255, 255, 0.08);
	color: #eca760;
	font-size: 0.75rem;
	word-break: break-word;
}

.route99-hero-image-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.route99-kb-local-section-copy-only .route99-kb-local-copy {
	max-width: 58rem;
	padding-left: 0;
}

.route99-kb-feature-content {
	flex: 1;
	padding: 2rem;
}

.route99-kb-fit-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0;
}

.route99-kb-fit-card {
	width: auto;
	max-width: none;
	padding: 2rem;
	border: 1px solid #ded6d0;
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(6, 29, 43, 0.06);
}

.route99-kb-fit-card-dark {
	border-color: #123344;
	background: #061d2b;
	color: #ffffff;
}

.route99-kb-fit-icon {
	display: flex;
	width: 3.25rem;
	height: 3.25rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: rgba(200, 122, 21, 0.14);
	color: #c87a15;
	font-size: 1.35rem;
}

.route99-kb-fit-card h2 {
	margin: 0 0 1rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.75rem;
	font-weight: 600;
}

.route99-kb-fit-card-dark h2 {
	color: #ffffff;
}

.route99-kb-fit-card p,
.route99-kb-fit-card li {
	font-size: 1rem;
	line-height: 1.7;
}

.route99-kb-fit-card p {
	color: #4c575f;
}

.route99-kb-fit-card-dark p {
	color: rgba(255, 255, 255, 0.78);
}

.route99-kb-fit-card ul {
	margin: 1rem 0 0;
	padding-left: 1.25rem;
}

.route99-kb-fit-card li + li {
	margin-top: 0.5rem;
}

.route99-kb-feature-title {
	margin: 0 0 1rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-kb-check-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.route99-kb-check-list li {
	position: relative;
	padding-left: 1.5rem;
	color: #313c44;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.route99-kb-check-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: #c87a15;
	font-family: "bootstrap-icons";
	content: "\f26e";
}

.route99-kb-details-heading {
	margin-bottom: 2.5rem;
}

.route99-kb-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.route99-kb-detail-card {
	padding: 1.5rem;
	border: 1px solid #ded6d0;
	border-radius: 0.75rem;
	background-color: #ffffff;
	box-shadow: 0 4px 15px rgba(6, 29, 43, 0.05);
}

.route99-kb-detail-icon {
	display: flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background-color: rgba(200, 122, 21, 0.14);
	color: #c87a15;
}

.route99-kb-detail-icon i {
	font-size: 1.25rem;
}

.route99-kb-detail-card h3 {
	margin: 0 0 0.5rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
}

.route99-kb-detail-card p {
	margin: 0;
	color: #4c575f;
	font-size: 0.875rem;
	line-height: 1.6;
}

.route99-kb-local-image-wrap {
	height: 32rem;
	border-radius: 1rem;
	box-shadow: 0 18px 40px rgba(6, 29, 43, 0.14);
}

.route99-kb-local-copy {
	padding-left: 2rem;
}

.route99-kb-quote-button {
	margin-top: 0.75rem;
}

.route99-kb-quote-button .wp-block-button__link {
	padding: 0.9rem 1.5rem;
	border-radius: 0.25rem;
	background-color: #c87a15;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
}

.route99-kb-quote-button .wp-block-button__link:hover,
.route99-kb-quote-button .wp-block-button__link:focus {
	background-color: #e09036;
	color: #ffffff;
}

/* Remove Gutenberg flow gaps where the Route 99 classes already set spacing. */
.route99-kb-feature-row > *,
.route99-kb-local-row > *,
.route99-kb-feature-content.is-layout-flow > *,
.route99-kb-detail-card.is-layout-flow > * {
	margin-block-start: 0;
}

/* Prevent the global 840px content constraint from narrowing full-width sections. */
.is-layout-constrained > .route99-kb-hero,
.is-layout-constrained > .route99-kb-intro-section,
.is-layout-constrained > .route99-category-services-section,
.is-layout-constrained > .route99-category-projects-section,
.is-layout-constrained > .route99-kb-feature-section,
.is-layout-constrained > .route99-service-offerings-section,
.is-layout-constrained > .route99-kb-fit-section,
.is-layout-constrained > .route99-kb-details-section,
.is-layout-constrained > .route99-kb-local-section {
	width: 100%;
	max-width: none !important;
}

.route99-kb-intro-section.is-layout-constrained > .route99-kb-container,
.route99-category-services-section.is-layout-constrained > .route99-kb-container,
.route99-category-projects-section.is-layout-constrained > .route99-kb-container,
.route99-kb-feature-section.is-layout-constrained > .route99-kb-container,
.route99-service-offerings-section.is-layout-constrained > .route99-kb-container,
.route99-kb-fit-section.is-layout-constrained > .route99-kb-container,
.route99-kb-details-section.is-layout-constrained > .route99-kb-container,
.route99-kb-local-section.is-layout-constrained > .route99-kb-container,
.route99-kb-container.is-layout-constrained > .route99-kb-feature-row,
.route99-kb-container.is-layout-constrained > .route99-service-offerings-grid,
.route99-kb-container.is-layout-constrained > .route99-kb-fit-row,
.route99-kb-container.is-layout-constrained > .route99-kb-detail-grid,
.route99-kb-container.is-layout-constrained > .route99-kb-local-row {
	width: 100%;
	max-width: 1280px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

@media (min-width: 1024px) {
	.route99-kb-intro-section,
	.route99-kb-feature-section,
	.route99-service-offerings-section,
	.route99-kb-fit-section,
	.route99-kb-details-section,
	.route99-kb-local-section {
		/*
		padding-top: 7rem;
		padding-bottom: 7rem;
		*/
	}

	.route99-kb-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.route99-kb-section-title {
		font-size: 3rem;
		line-height: 1.08;
	}
}

@media (max-width: 991.98px) {
	.route99-kb-feature-row {
		grid-template-columns: 1fr;
	}

	.route99-service-offerings-grid {
		grid-template-columns: 1fr;
	}

	.route99-kb-fit-row {
		grid-template-columns: 1fr;
	}

	.route99-kb-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.route99-kb-local-copy {
		padding-left: 0;
	}
}

@media (max-width: 639.98px) {
	.route99-kb-intro-section,
	.route99-kb-feature-section,
	.route99-service-offerings-section,
	.route99-kb-fit-section,
	.route99-kb-details-section,
	.route99-kb-local-section {
		/*
		padding-top: 4rem;
		padding-bottom: 4rem;
		*/
	}

	.route99-kb-section-title {
		font-size: 2rem;
	}

	.route99-kb-feature-image-wrap {
		height: 14rem;
	}

	.route99-kb-feature-content {
		padding: 1.5rem;
	}

	.route99-kb-fit-card {
		padding: 1.5rem;
	}

	.route99-kb-detail-grid {
		grid-template-columns: 1fr;
	}

	.route99-kb-local-image-wrap {
		height: 22rem;
	}
}






.alignfull {
	max-width: 100vw;
	width: 100vw;
}
.entry-content .alignfull {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Location singles already span the viewport; do not apply the constrained
 * entry-content breakout calculation a second time. */
.route99-location-entry-content > .alignfull,
.route99-location-entry-content .alignfull {
	position: static;
	left: auto;
	right: auto;
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

/* =========================================================
 * Filterable Project masonry gallery
 * ========================================================= */

.route99-project-masonry {
	width: 100%;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	background: #07111f;
	color: #ffffff;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
	box-shadow: 0 20px 50px rgba(6, 29, 43, 0.14);
}

.route99-project-filters {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 3rem;
}

.route99-project-filter {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 1.15rem;
	border: 1px solid #263247;
	border-radius: 999px;
	background: #151f30;
	color: #e5e7eb !important;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	transition: 0.2s ease;
}

.route99-project-filter small {
	color: #94a3b8 !important;
	font-size: 0.72rem;
}

.route99-project-filter:hover,
.route99-project-filter:focus-visible {
	border-color: #c87a15;
	background: #1e2b40;
	color: #ffffff !important;
}

.route99-project-filter.is-active {
	border-color: #f59e0b;
	background: #f59e0b;
	box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
	color: #061d2b !important;
}

.route99-project-filter.is-active small {
	color: rgba(6, 29, 43, 0.72) !important;
}

.route99-project-filter > span {
	color: inherit !important;
}

.route99-project-masonry-grid {
	column-count: 3;
	column-gap: 1.5rem;
}

.route99-project-masonry-columns-1 .route99-project-masonry-grid {
	column-count: 1;
}

.route99-project-masonry-columns-2 .route99-project-masonry-grid {
	column-count: 2;
}

.route99-project-masonry-columns-4 .route99-project-masonry-grid {
	column-count: 4;
}

.route99-project-card {
	display: inline-block;
	width: 100%;
	margin: 0 0 1.5rem;
	overflow: hidden;
	break-inside: avoid;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 0.85rem;
	background: #101b2d;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
	vertical-align: top;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.route99-project-card:hover {
	transform: translateY(-0.25rem);
	border-color: rgba(245, 158, 11, 0.42);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.route99-project-card[hidden] {
	display: none !important;
}

.route99-project-card-compare {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #061d2b;
	cursor: col-resize;
	touch-action: none;
	user-select: none;
}

.route99-project-card-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: cover;
	pointer-events: none;
}

.route99-project-card-before {
	clip-path: inset(0 calc(100% - var(--route99-compare-position)) 0 0);
}

.route99-project-card-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--route99-compare-position);
	width: 2px;
	background: #ffffff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
	transform: translateX(-50%);
	pointer-events: none;
}

.route99-project-card-handle {
	position: absolute;
	top: 50%;
	left: var(--route99-compare-position);
	display: flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.32);
	color: #182230;
	transform: translate(-50%, -50%);
	cursor: col-resize;
}

.route99-project-card-handle:focus-visible {
	outline: 3px solid #f59e0b;
	outline-offset: 3px;
}

.route99-project-card-handle i {
	font-size: 0.85rem;
}

.route99-project-card-label {
	position: absolute;
	top: 1rem;
	padding: 0.32rem 0.62rem;
	border-radius: 0.3rem;
	background: rgba(0, 0, 0, 0.58);
	color: #ffffff;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	pointer-events: none;
}

.route99-project-card-label-before {
	left: 1rem;
}

.route99-project-card-label-after {
	right: 1rem;
}

.route99-project-card-help {
	position: absolute;
	right: 0;
	bottom: 1rem;
	left: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
	text-transform: uppercase;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.route99-project-card-compare.has-interacted .route99-project-card-help {
	opacity: 0;
}

.route99-project-card-body {
	padding: 1.75rem;
}

.route99-project-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
	font-size: 0.68rem;
	line-height: 1.35;
}

.route99-project-card-category {
	color: #fbbf24;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route99-project-card-separator {
	color: rgba(255, 255, 255, 0.18);
}

.route99-project-card-location {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: rgba(255, 255, 255, 0.45);
}

.route99-project-card-title {
	margin: 0 0 0.75rem;
	color: #ffffff;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.25;
}

.route99-project-card-description {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 1.15rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.route99-project-card-highlights {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.route99-project-card-highlights li {
	position: relative;
	margin-top: 0.4rem;
	padding-left: 1.15rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.78rem;
	line-height: 1.5;
}

.route99-project-card-highlights li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: #f59e0b;
	content: "";
}

.route99-project-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #fbbf24;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}

.route99-project-card-link:hover,
.route99-project-card-link:focus {
	color: #fde68a;
}

.route99-project-card-link i {
	transition: transform 0.2s ease;
}

.route99-project-card-link:hover i,
.route99-project-card-link:focus i {
	transform: translateX(0.2rem);
}

@media (max-width: 1199.98px) {
	.route99-project-masonry-grid,
	.route99-project-masonry-columns-4 .route99-project-masonry-grid {
		column-count: 2;
	}
}

@media (max-width: 767.98px) {
	.route99-project-filters {
		justify-content: flex-start;
		margin-bottom: 2rem;
	}

	.route99-project-masonry-grid,
	.route99-project-masonry-columns-2 .route99-project-masonry-grid,
	.route99-project-masonry-columns-3 .route99-project-masonry-grid,
	.route99-project-masonry-columns-4 .route99-project-masonry-grid {
		column-count: 1;
	}

	.route99-project-card-body {
		padding: 1.35rem;
	}
}
/*
  .alignwide {max-width: 1320px; width: 100vw; margin:0 auto;}
  */
.alignwide {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
}
@media (min-width:576px) {
	.alignwide {
		max-width: 540px;
	}
}
@media (min-width:768px) {
	.alignwide {
		max-width: 720px;
	}
}
@media (min-width:992px) {
	.alignwide {
		max-width: 960px;
	}
}
@media (min-width:1200px) {
	.alignwide {
		max-width: 1140px;
	}
}
@media (min-width:1400px) {
	.alignwide {
		max-width: 1320px;
	}
}






@media (min-width: 1024px) {
	.route99-related-services-title {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

/*
 * Tailwind sm begins at 640px.
 * Bootstrap col-sm begins at 576px, so keep one column until 640px.
 */
@media (min-width: 576px) and (max-width: 639.98px) {
	.route99-related-services-column {
		width: 100%;
	}
}

@media (max-width: 639.98px) {
	.route99-related-services-heading {
		margin-bottom: 2.5rem;
	}

	.route99-related-services-title {
		font-size: 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.route99-related-service-image,
	.route99-related-service-link i {
		transition: none;
	}
}

/* =========================================================
 * Get a Quote / Contact Form 7 pattern
 * ========================================================= */

.route99-quote-section {
	width: 100%;
	padding: 5rem 0;
	background: #f9f4f0;
	font-family: var(--route99-font-body, "DM Sans", system-ui, sans-serif);
}

.route99-quote-container {
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.route99-quote-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 3rem;
	align-items: start;
}

.route99-quote-upload-intro {
	max-width: 760px;
	margin-bottom: 2.75rem;
}

.route99-quote-upload-title {
	margin: 0.85rem 0 1rem;
	color: #061d2b;
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.04;
}

.route99-quote-upload-title span {
	display: block;
	color: #c87a15;
}

.route99-quote-upload-lead {
	max-width: 700px;
	margin: 0;
	color: #59636a;
	font-size: 1.05rem;
	line-height: 1.75;
}

.route99-quote-process-list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-quote-process-list li {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
}

.route99-quote-process-list li > span {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(200, 122, 21, 0.12);
	color: #a95f0c;
	font-size: 0.75rem;
	font-weight: 800;
}

.route99-quote-process-list strong,
.route99-quote-process-list small {
	display: block;
}

.route99-quote-process-list strong {
	margin-bottom: 0.2rem;
	color: #142c39;
	font-size: 0.875rem;
}

.route99-quote-process-list small {
	color: #667078;
	font-size: 0.78rem;
	line-height: 1.5;
}

.route99-quote-form-card,
.route99-quote-side-card,
.route99-quote-contact-card {
	border-radius: 1rem;
}

.route99-quote-form-card {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.route99-quote-sidebar {
	display: grid;
	gap: 1.5rem;
}

.route99-quote-contact-card {
	padding: 1.75rem;
	background: #061d2b;
	color: #ffffff;
}

.route99-quote-contact-card h3,
.route99-quote-side-card h3,
.route99-cf7-heading h2 {
	font-family: var(--route99-font-display, "Fraunces", Georgia, serif);
	font-weight: 700;
}

.route99-quote-contact-card h3 {
	margin: 0 0 1.25rem;
	color: #ffffff;
	font-size: 1.2rem;
}

.route99-quote-contact-list {
	display: grid;
	gap: 1rem;
}

.route99-quote-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #ffffff;
	text-decoration: none;
}

.route99-quote-contact-icon {
	display: inline-flex;
	width: 2.5rem;
	height: 2.5rem;
	flex: 0 0 2.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 0.6rem;
	background: rgba(200, 122, 21, 0.16);
	color: #eca760;
}

.route99-quote-contact-item small,
.route99-quote-contact-item strong {
	display: block;
}

.route99-quote-contact-item small {
	margin-bottom: 0.1rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.72rem;
}

.route99-quote-contact-item strong {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.875rem;
}

a.route99-quote-contact-item strong {
	color: #eca760;
}

.route99-quote-owner-note {
	margin: 1.5rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.75rem;
	line-height: 1.6;
}

.route99-quote-side-card {
	padding: 1.75rem;
	border: 1px solid #e2d9d1;
	background: #ffffff;
}

.route99-quote-side-card h3 {
	margin: 0 0 1rem;
	color: #061d2b;
	font-size: 1.05rem;
}

.route99-quote-promise-list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route99-quote-promise-list li {
	position: relative;
	padding-left: 1.5rem;
	color: #59636a;
	font-size: 0.875rem;
	line-height: 1.45;
}

.route99-quote-promise-list li::before {
	position: absolute;
	top: 0.05rem;
	left: 0;
	color: #c87a15;
	font-family: "bootstrap-icons";
	content: "\f26e";
}

.route99-quote-faqs details {
	border-bottom: 1px solid #e2d9d1;
}

.route99-quote-faqs details:last-child {
	border-bottom: 0;
}

.route99-quote-faqs summary {
	position: relative;
	padding: 1rem 1.5rem 1rem 0;
	color: #142c39;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.route99-quote-faqs summary::-webkit-details-marker {
	display: none;
}

.route99-quote-faqs summary::after {
	position: absolute;
	top: 1rem;
	right: 0;
	color: #c87a15;
	font-family: "bootstrap-icons";
	content: "\f282";
	transition: transform 0.2s ease;
}

.route99-quote-faqs details[open] summary::after {
	transform: rotate(180deg);
}

.route99-quote-faqs p {
	margin: -0.25rem 0 1rem;
	color: #667078;
	font-size: 0.82rem;
	line-height: 1.6;
}

.route99-quote-services-button .wp-block-button__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(200, 122, 21, 0.22);
	border-radius: 0.75rem;
	background: rgba(200, 122, 21, 0.08);
	color: #263e4b;
	font-size: 0.875rem;
	font-weight: 700;
}

.route99-quote-services-button .wp-block-button__link:hover,
.route99-quote-services-button .wp-block-button__link:focus {
	background: rgba(200, 122, 21, 0.15);
	color: #061d2b;
}

.route99-cf7-form {
	display: grid;
	gap: 1.5rem;
}

.route99-cf7-form p {
	margin: 0;
}

.route99-cf7-heading h2 {
	margin: 0 0 0.25rem;
	color: #061d2b;
	font-size: 1.6rem;
}

.route99-cf7-heading p {
	color: #667078;
	font-size: 0.875rem;
}

.route99-cf7-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.route99-cf7-form label {
	display: block;
	color: #46545d;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-transform: uppercase;
}

.route99-cf7-form label > span:not(.wpcf7-form-control-wrap) {
	color: #7b858c;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.route99-cf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.4rem;
}

.route99-cf7-form input:not([type="submit"]):not([type="file"]),
.route99-cf7-form select,
.route99-cf7-form textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	border: 1px solid #ded6d0;
	border-radius: 0.55rem;
	outline: 0;
	background: #ffffff;
	color: #142c39;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.route99-cf7-form textarea {
	min-height: 8rem;
	resize: vertical;
}

.route99-cf7-form input:focus,
.route99-cf7-form select:focus,
.route99-cf7-form textarea:focus {
	border-color: #c87a15;
	box-shadow: 0 0 0 0.2rem rgba(200, 122, 21, 0.14);
}

.route99-cf7-upload {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem 1rem;
	padding: 1.5rem;
	border: 2px dashed #d8cdc3;
	border-radius: 0.8rem;
	background: #fdfbf9;
}

.route99-cf7-upload-icon {
	display: inline-flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(200, 122, 21, 0.12);
	color: #c87a15;
	font-size: 1.2rem;
}

.route99-cf7-upload h3 {
	margin: 0 0 0.2rem;
	color: #263e4b;
	font-size: 0.9rem;
	font-weight: 700;
}

.route99-cf7-upload h3 span {
	color: #7b858c;
	font-weight: 400;
}

.route99-cf7-upload p {
	color: #7b858c;
	font-size: 0.75rem;
	line-height: 1.5;
}

.route99-cf7-file-grid {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.route99-cf7-file-grid label {
	padding: 0.65rem;
	border: 1px solid #e5ddd6;
	border-radius: 0.5rem;
	background: #ffffff;
	font-size: 0.65rem;
}

.route99-cf7-file-grid input[type="file"] {
	display: block;
	width: 100%;
	margin-top: 0.35rem;
	color: #667078;
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.route99-cf7-form input[type="submit"] {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 0;
	border-radius: 0.75rem;
	background: #c87a15;
	color: #061d2b;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
}

.route99-cf7-form input[type="submit"]:hover,
.route99-cf7-form input[type="submit"]:focus {
	background: #df9132;
}

.route99-cf7-consent {
	color: #7b858c;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
}

.route99-cf7-form .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.route99-cf7-form .wpcf7-response-output {
	margin: 0;
	padding: 0.8rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.85rem;
}

.is-layout-constrained > .route99-quote-section {
	width: 100%;
	max-width: none !important;
}

.route99-quote-section.is-layout-constrained > .route99-quote-container,
.route99-quote-container.is-layout-constrained > .route99-quote-layout {
	width: 100%;
	max-width: 1200px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

@media (max-width: 991.98px) {
	.route99-quote-layout {
		grid-template-columns: 1fr;
	}

	.route99-quote-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.route99-quote-contact-card,
	.route99-quote-sidebar > .wp-block-buttons {
		grid-column: 1 / -1;
	}
}

@media (max-width: 639.98px) {
	.route99-quote-section {
		padding: 4rem 0;
	}

	.route99-cf7-grid,
	.route99-cf7-file-grid,
	.route99-quote-sidebar {
		grid-template-columns: 1fr;
	}

	.route99-quote-contact-card,
	.route99-quote-sidebar > .wp-block-buttons {
		grid-column: auto;
	}

	.route99-cf7-upload {
		grid-template-columns: 1fr;
	}

	.route99-cf7-file-grid {
		grid-column: auto;
	}
}
