/* 
 * Main Stylesheet for Watts Marine
 * Prefixed with .wm-
 */

/* ==========================================================================
   1. Design Tokens (CSS Variables)
   ========================================================================== */
:root {
	/* Colors */
	--wm-color-navy: #0A192F;
	--wm-color-blue: #0066CC;
	--wm-color-blue-hover: #0052A3;
	--wm-color-sky: #E6F0FA;
	--wm-color-surface: #FFFFFF;
	--wm-color-surface-soft: #F5F7FA;
	--wm-color-text: #334155;
	--wm-color-muted: #64748B;
	--wm-color-border: #E2E8F0;
	--wm-color-error: #EF4444;
	--wm-color-success: #10B981;

	/* Typography */
	--wm-font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--wm-font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

	/* Spacing */
	--wm-space-xs: 0.5rem;   /* 8px */
	--wm-space-sm: 1rem;     /* 16px */
	--wm-space-md: 1.5rem;   /* 24px */
	--wm-space-lg: 2rem;     /* 32px */
	--wm-space-xl: 3rem;     /* 48px */
	--wm-space-2xl: 4rem;    /* 64px */
	--wm-space-3xl: 6rem;    /* 96px */

	/* Radius & Shadow */
	--wm-radius-sm: 4px;
	--wm-radius-md: 8px;
	--wm-radius-lg: 12px;
	--wm-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--wm-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--wm-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

	/* Layout */
	--wm-container-width: 1200px;
	--wm-header-height: 80px;

	/* Z-Index */
	--wm-z-header: 100;
	--wm-z-mobile-nav: 200;
	--wm-z-overlay: 150;
}

/* ==========================================================================
   2. Base Reset & Normalization
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--wm-font-body);
	color: var(--wm-color-text);
	background-color: var(--wm-color-surface);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--wm-color-blue);
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

a:hover, a:focus {
	color: var(--wm-color-blue-hover);
}

/* Accessible focus states globally */
:focus-visible {
	outline: 2px solid var(--wm-color-blue);
	outline-offset: 2px;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wm-font-heading);
	color: var(--wm-color-navy);
	margin-top: 0;
	margin-bottom: var(--wm-space-sm);
	line-height: 1.2;
	font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
	margin-top: 0;
	margin-bottom: var(--wm-space-sm);
}

p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   4. Layout & Containers
   ========================================================================== */
.wm-site-main {
	min-height: 50vh;
}

.wm-container {
	max-width: var(--wm-container-width);
	margin: 0 auto;
	padding: 0 var(--wm-space-md);
	width: 100%;
}

.wm-section {
	padding: var(--wm-space-2xl) 0;
}

.wm-section--soft {
	background-color: var(--wm-color-surface-soft);
}

.wm-section--dark {
	background-color: var(--wm-color-navy);
	color: var(--wm-color-surface);
}

.wm-section--dark h1, 
.wm-section--dark h2, 
.wm-section--dark h3, 
.wm-section--dark h4 {
	color: var(--wm-color-surface);
}

/* Simple Grid Helper */
.wm-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wm-space-lg);
}

@media (min-width: 768px) {
	.wm-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.wm-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.wm-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   5. Buttons (CTAs)
   ========================================================================== */
.wm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wm-font-body);
	font-weight: 600;
	font-size: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--wm-radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	line-height: 1;
}

.wm-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--wm-shadow-md);
}

.wm-button:active {
	transform: translateY(0);
}

.wm-button--primary {
	background-color: var(--wm-color-blue);
	color: var(--wm-color-surface);
}

.wm-button--primary:hover, .wm-button--primary:focus {
	background-color: var(--wm-color-blue-hover);
	color: var(--wm-color-surface);
}

.wm-button--secondary {
	background-color: var(--wm-color-navy);
	color: var(--wm-color-surface);
}

.wm-button--secondary:hover, .wm-button--secondary:focus {
	background-color: #0F2445;
	color: var(--wm-color-surface);
}

.wm-button--ghost {
	background-color: transparent;
	color: var(--wm-color-blue);
	border-color: var(--wm-color-blue);
}

.wm-button--ghost:hover, .wm-button--ghost:focus {
	background-color: var(--wm-color-sky);
	color: var(--wm-color-blue-hover);
}

.wm-button--full-mobile {
	width: 100%;
}

@media (min-width: 768px) {
	.wm-button--full-mobile {
		width: auto;
	}
}

/* ==========================================================================
   6. Base Cards & Forms
   ========================================================================== */
.wm-card {
	background-color: var(--wm-color-surface);
	border-radius: var(--wm-radius-lg);
	box-shadow: var(--wm-shadow-sm);
	padding: var(--wm-space-lg);
	border: 1px solid var(--wm-color-border);
	transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.wm-card:hover {
	box-shadow: var(--wm-shadow-md);
	transform: translateY(-4px);
}

/* Forms */
.wm-form-group {
	margin-bottom: var(--wm-space-md);
}

.wm-label {
	display: block;
	font-weight: 600;
	margin-bottom: var(--wm-space-xs);
	color: var(--wm-color-navy);
}

.wm-input, .wm-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-md);
	font-family: var(--wm-font-body);
	font-size: 1rem;
	color: var(--wm-color-text);
	background-color: var(--wm-color-surface);
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wm-input:focus, .wm-textarea:focus {
	outline: none;
	border-color: var(--wm-color-blue);
	box-shadow: 0 0 0 3px var(--wm-color-sky);
}

.wm-textarea {
	min-height: 120px;
	resize: vertical;
}

/* ==========================================================================
   7. Utilities (Accessibility)
   ========================================================================== */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--wm-color-surface);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--wm-color-blue);
	display: block;
	font-size: 1rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ==========================================================================
/* ==========================================================================
   8. Header (Desktop & Mobile)
   ========================================================================== */
.wm-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--wm-color-border, #d9e2ec);
}

.admin-bar .wm-site-header {
	top: 32px;
}

.wm-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 76px;
}

.wm-brand {
	display: grid;
	gap: 0.2rem;
	min-width: 220px;
	max-width: 320px;
	color: var(--wm-color-navy, #061526);
	text-decoration: none;
}

.wm-brand__name {
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}

.wm-brand__tagline {
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--wm-color-muted, #4d5b6a);
}

.wm-primary-nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.wm-primary-nav__list {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.wm-primary-nav__item {
	position: relative;
}

.wm-primary-nav__item > a,
.wm-primary-nav__button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 44px;
	border: 0;
	background: transparent;
	color: var(--wm-color-navy, #061526);
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.wm-primary-nav__button::after {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.wm-primary-nav__dropdown {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	min-width: 320px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 160ms ease, visibility 160ms ease;
}

.wm-primary-nav__dropdown--compact {
	min-width: 220px;
}

.wm-primary-nav__item:hover .wm-primary-nav__dropdown,
.wm-primary-nav__button[aria-expanded="true"] + .wm-primary-nav__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.wm-primary-nav__dropdown-inner {
	background: #fff;
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(6, 21, 38, 0.14);
	padding: 1rem;
}

.wm-primary-nav__dropdown-title {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--wm-color-muted, #4d5b6a);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.wm-primary-nav__dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.25rem;
}

.wm-primary-nav__dropdown a {
	display: block;
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	color: var(--wm-color-navy, #061526);
	font-weight: 700;
	text-decoration: none;
}

.wm-primary-nav__dropdown a:hover,
.wm-primary-nav__dropdown a:focus {
	background: var(--wm-color-soft, #f3f7fb);
}

.wm-header-actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-shrink: 0;
}

.wm-header-phone {
	display: grid;
	gap: 0.1rem;
	color: var(--wm-color-navy, #061526);
	text-decoration: none;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
}

.wm-header-phone__label {
	font-size: 0.72rem;
	color: var(--wm-color-muted, #4d5b6a);
	font-weight: 700;
}

.wm-header-phone__number {
	font-size: 0.95rem;
}

.wm-header-quote {
	white-space: nowrap;
}

.wm-mobile-menu-toggle {
	display: none;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: 999px;
	background: #fff;
	color: var(--wm-color-navy, #061526);
	padding: 0.55rem 0.85rem;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.wm-mobile-menu-toggle__bars {
	position: relative;
	display: inline-block;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
}

.wm-mobile-menu-toggle__bars::before,
.wm-mobile-menu-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
}

.wm-mobile-menu-toggle__bars::before {
	top: -6px;
}

.wm-mobile-menu-toggle__bars::after {
	top: 6px;
}

.wm-mobile-nav {
	border-top: 1px solid var(--wm-color-border, #d9e2ec);
	background: #fff;
}

.wm-mobile-nav__inner {
	padding: 1rem;
	display: grid;
	gap: 0.75rem;
}

.wm-mobile-nav__link,
.wm-mobile-nav__accordion {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 48px;
	border: 0;
	background: transparent;
	color: var(--wm-color-navy, #061526);
	text-decoration: none;
	font: inherit;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.wm-mobile-nav__submenu {
	list-style: none;
	padding: 0.25rem 0 0.75rem 1rem;
	margin: 0;
	display: grid;
	gap: 0.35rem;
}

.wm-mobile-nav__submenu a {
	display: block;
	padding: 0.55rem 0;
	color: var(--wm-color-navy, #061526);
	font-weight: 700;
	text-decoration: none;
}

.wm-mobile-nav__actions {
	display: grid;
	gap: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--wm-color-border, #d9e2ec);
}

.wm-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: #fff;
	color: #000;
	padding: 0.75rem 1rem;
	z-index: 999;
}

.wm-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

@media (max-width: 1120px) {
	.wm-site-header__inner {
		gap: 1rem;
	}

	.wm-primary-nav__list {
		gap: 0.85rem;
	}

	.wm-brand {
		max-width: 260px;
	}
}

@media (max-width: 980px) {
	.wm-primary-nav,
	.wm-header-phone,
	.wm-header-quote {
		display: none;
	}

	.wm-mobile-menu-toggle {
		display: inline-flex;
	}

	.wm-site-header__inner {
		min-height: 68px;
	}

	.wm-brand {
		min-width: 0;
		max-width: 230px;
	}
}

@media (max-width: 480px) {
	.wm-brand__tagline {
		display: none;
	}

	.wm-brand__name {
		font-size: 1.05rem;
	}

	.wm-site-header__inner {
		min-height: 64px;
	}
}

/* ==========================================================================
   10. Footer
   ========================================================================== */
.wm-site-footer {
	padding: var(--wm-space-2xl) 0 var(--wm-space-xl) 0;
	color: var(--wm-color-sky);
}

.wm-site-footer a {
	color: var(--wm-color-surface);
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.wm-site-footer a:hover,
.wm-site-footer a:focus {
	color: var(--wm-color-blue);
	text-decoration: underline;
}

.wm-footer-title {
	font-size: 1.25rem;
	color: var(--wm-color-surface);
	margin-bottom: var(--wm-space-md);
}

.wm-footer-subtitle {
	font-size: 1rem;
	color: var(--wm-color-surface);
	margin-top: var(--wm-space-md);
	margin-bottom: var(--wm-space-xs);
}

/* Footer Grid Items */
.wm-footer-col {
	display: flex;
	flex-direction: column;
}

/* NAP Block */
.wm-footer-nap address {
	font-style: normal;
	margin-bottom: var(--wm-space-sm);
	line-height: 1.6;
}

.wm-footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--wm-space-sm) 0;
}

.wm-footer-contact-list li {
	margin-bottom: 0.25rem;
}

.wm-footer-hours ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.875rem;
}

.wm-footer-hours li {
	margin-bottom: 0.25rem;
}

.wm-footer-hours strong {
	color: var(--wm-color-surface);
}

/* Services & Areas */
.wm-footer-menu,
.wm-footer-area-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wm-footer-menu li,
.wm-footer-area-list li {
	margin-bottom: var(--wm-space-xs);
}

.wm-footer-area-list li {
	font-size: 0.9375rem;
}

/* Footer CTA */
.wm-footer-cta-text {
	margin-bottom: var(--wm-space-md);
}

/* Footer Bottom (Legal & Copyright) */
.wm-footer-bottom {
	margin-top: var(--wm-space-2xl);
	padding-top: var(--wm-space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: var(--wm-space-md);
	text-align: center;
	font-size: 0.875rem;
}

.wm-legal-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wm-space-md);
}

.wm-copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
	.wm-footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: left;
	}
}

/* ==========================================================================
   11. Section Components
   ========================================================================== */

/* Hero Local */
.wm-hero-local {
	background-color: var(--wm-color-surface);
	padding: var(--wm-space-2xl) 0;
}
.wm-hero-local__content {
	max-width: 800px;
}
.wm-hero-local__trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(0, 102, 204, 0.1);
	color: var(--wm-color-blue);
	padding: 0.5rem 1rem;
	border-radius: var(--wm-radius-full);
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: var(--wm-space-md);
}
.wm-hero-local__heading {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: var(--wm-space-md);
}
.wm-hero-local__intro {
	font-size: 1.25rem;
	color: var(--wm-color-slate);
	margin-bottom: var(--wm-space-xl);
}
.wm-hero-local__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wm-space-md);
}
@media (min-width: 768px) {
	.wm-hero-local { padding: var(--wm-space-3xl) 0; }
	.wm-hero-local__heading { font-size: 3.5rem; }
}

/* Trust Strip */
.wm-trust-strip {
	padding: var(--wm-space-sm) 0;
}
.wm-trust-strip__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--wm-space-md);
	justify-content: center;
}
.wm-trust-strip__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wm-color-surface);
}
.wm-trust-strip__icon {
	color: var(--wm-color-sky);
}
@media (min-width: 768px) {
	.wm-trust-strip__list { justify-content: space-between; }
	.wm-trust-strip__item { font-size: 1rem; }
}

/* Service Grid & Cards */
.wm-card {
	background-color: var(--wm-color-surface);
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-md);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.wm-card:hover {
	box-shadow: var(--wm-shadow-lg);
	transform: translateY(-4px);
}
.wm-card__content {
	padding: var(--wm-space-lg);
	flex-grow: 1;
}
.wm-card__title {
	font-size: 1.25rem;
	margin-bottom: var(--wm-space-sm);
}
.wm-card__link {
	color: var(--wm-color-navy);
	text-decoration: none;
}
.wm-card__link:hover {
	color: var(--wm-color-blue);
}
.wm-card__link::after {
	content: '';
	position: absolute;
	inset: 0;
}
.wm-card__excerpt {
	color: var(--wm-color-slate);
	font-size: 0.9375rem;
}
.wm-card__footer {
	padding: var(--wm-space-md) var(--wm-space-lg);
	border-top: 1px solid var(--wm-color-border);
	background-color: var(--wm-color-light);
}
.wm-card__action {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--wm-color-blue);
	font-weight: 600;
	font-size: 0.875rem;
}
.wm-card { position: relative; } /* For the pseudo-element link */

/* Diagnostic Selector */
.wm-diagnostic-card {
	background-color: var(--wm-color-surface);
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-md);
	padding: var(--wm-space-lg);
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: var(--wm-space-md);
}
.wm-diagnostic-card__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wm-color-slate);
	font-weight: 700;
	display: block;
	margin-bottom: 0.25rem;
}
.wm-diagnostic-card__title {
	font-size: 1.25rem;
	margin: 0;
}
.wm-diagnostic-card__arrow {
	color: var(--wm-color-border);
}
.wm-diagnostic-card__solution a {
	color: var(--wm-color-blue);
	text-decoration: none;
}
.wm-diagnostic-card__solution a:hover {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.wm-diagnostic-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
	}
	.wm-diagnostic-card__symptom, .wm-diagnostic-card__solution { flex: 1; }
	.wm-diagnostic-card__arrow { transform: rotate(-90deg); } /* Right arrow on desktop */
}

/* Process Steps */
.wm-process-grid {
	gap: var(--wm-space-xl);
}
.wm-process-step {
	text-align: center;
}
.wm-process-step__number {
	width: 48px;
	height: 48px;
	background-color: var(--wm-color-blue);
	color: var(--wm-color-surface);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 auto var(--wm-space-md) auto;
}
.wm-process-step__title {
	font-size: 1.25rem;
	margin-bottom: var(--wm-space-sm);
}

/* Proof Gallery */
.wm-gallery-item {
	border-radius: var(--wm-radius-md);
	overflow: hidden;
}
.wm-gallery-item__image-placeholder {
	background-color: var(--wm-color-border);
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wm-color-slate);
}
.wm-gallery-item__caption {
	padding: var(--wm-space-sm);
	font-size: 0.875rem;
	font-weight: 500;
	text-align: center;
	background-color: var(--wm-color-light);
}

/* Local Area */
.wm-local-area__list {
	list-style: none;
	padding: 0;
	margin: var(--wm-space-lg) 0 0 0;
	display: flex;
	flex-direction: column;
	gap: var(--wm-space-sm);
	color: var(--wm-color-surface);
}
.wm-local-area__list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}
.wm-local-area__list svg {
	color: var(--wm-color-sky);
}
.wm-local-area__map-placeholder {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: var(--wm-radius-md);
	aspect-ratio: 16/9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--wm-color-surface);
	gap: 1rem;
}
@media (min-width: 768px) {
	.wm-local-area__list { flex-direction: row; flex-wrap: wrap; gap: var(--wm-space-lg); }
	.wm-local-area__map-placeholder { aspect-ratio: 1; }
}

/* Accordion */
.wm-accordion {
	border-top: 1px solid var(--wm-color-border);
}
.wm-accordion__item {
	border-bottom: 1px solid var(--wm-color-border);
}
.wm-accordion__summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--wm-space-md) 0;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--wm-color-navy);
}
.wm-accordion__summary::-webkit-details-marker {
	display: none;
}
.wm-accordion__icon {
	color: var(--wm-color-blue);
	transition: transform 0.2s ease;
}
.wm-accordion__item[open] .wm-accordion__icon {
	transform: rotate(180deg);
}
.wm-accordion__content {
	padding-bottom: var(--wm-space-md);
	color: var(--wm-color-slate);
}
/* ==========================================================================
   12. Quote Form
   ========================================================================== */
.wm-quote-section {
	background-color: var(--wm-color-surface-soft);
}
.wm-quote-header {
	text-align: center;
	margin-bottom: var(--wm-space-xl);
}
.wm-quote-title {
	margin-bottom: var(--wm-space-xs);
}
.wm-quote-intro {
	color: var(--wm-color-muted);
	font-size: 1.125rem;
}
.wm-quote-card {
	max-width: 800px;
	margin: 0 auto;
}
.wm-quote-progress {
	background-color: var(--wm-color-border);
	height: 8px;
	border-radius: 4px;
	margin-bottom: var(--wm-space-xl);
	overflow: hidden;
}
.wm-quote-progress-bar {
	background-color: var(--wm-color-blue);
	height: 100%;
	border-radius: 4px;
	transition: width 0.3s ease;
}
.wm-quote-step {
	border: none;
	padding: 0;
	margin: 0 0 var(--wm-space-xl) 0;
}
.wm-quote-legend {
	font-family: var(--wm-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wm-color-navy);
	margin-bottom: var(--wm-space-md);
	padding: 0;
}
.wm-quote-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--wm-space-md);
	border-top: 1px solid var(--wm-color-border);
	margin-top: var(--wm-space-lg);
}
.wm-quote-btn-next,
.wm-quote-btn-submit {
	margin-left: auto;
}

/* Form Groups & Validation */
.wm-field-error {
	color: var(--wm-color-error);
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}
.wm-input--error {
	border-color: var(--wm-color-error) !important;
	box-shadow: 0 0 0 1px var(--wm-color-error) !important;
}

/* Alerts */
.wm-alert {
	padding: var(--wm-space-md);
	border-radius: var(--wm-radius-md);
	margin-bottom: var(--wm-space-lg);
}
.wm-alert--warning {
	background-color: #FFFBEB;
	border: 1px solid #F59E0B;
	color: #92400E;
}
.wm-alert--error {
	background-color: #FEF2F2;
	border: 1px solid #FCA5A5;
	color: #991B1B;
}

/* Checkboxes (Services) */
.wm-checkbox-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wm-space-sm);
}
@media (min-width: 640px) {
	.wm-checkbox-group {
		grid-template-columns: 1fr 1fr;
	}
}
.wm-checkbox-label {
	display: flex;
	align-items: center;
	padding: var(--wm-space-sm);
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-md);
	cursor: pointer;
	transition: all 0.2s ease;
}
.wm-checkbox-label:hover {
	border-color: var(--wm-color-blue);
	background-color: var(--wm-color-sky);
}
.wm-checkbox-label input[type="checkbox"] {
	margin-right: var(--wm-space-sm);
	width: 1.25rem;
	height: 1.25rem;
	accent-color: var(--wm-color-blue);
}
.wm-checkbox-text {
	font-weight: 500;
	color: var(--wm-color-text);
}

/* Helpers */
.wm-hidden-visually {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.wm-help-text {
	font-size: 0.875rem;
	color: var(--wm-color-muted);
	margin-top: -0.25rem;
	margin-bottom: 0.5rem;
}
.wm-file-input {
	padding: 0.5rem;
}


/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.wm-contact-hero {
	padding-block: var(--wm-space-10, 4rem);
}

.wm-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wm-space-6, 2rem);
}

.wm-contact-card {
	background: #fff;
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-lg, 16px);
	padding: var(--wm-space-6, 2rem);
	box-shadow: var(--wm-shadow-sm, 0 8px 24px rgba(0, 0, 0, 0.06));
}

.wm-contact-card h2 {
	margin-top: 0;
}

.wm-contact-list {
	list-style: none;
	padding: 0;
	margin: var(--wm-space-4, 1rem) 0 0;
	display: grid;
	gap: var(--wm-space-3, 0.75rem);
}

.wm-contact-list a,
.wm-contact-card__link {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.wm-cta-band {
	background: var(--wm-color-navy, #061526);
	color: #fff;
	border-radius: var(--wm-radius-lg, 16px);
	padding: var(--wm-space-8, 3rem);
	text-align: center;
}

.wm-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wm-space-3, 0.75rem);
	justify-content: center;
	margin-top: var(--wm-space-5, 1.5rem);
}

@media (max-width: 760px) {
	.wm-contact-grid {
		grid-template-columns: 1fr;
	}

	.wm-contact-card {
		padding: var(--wm-space-5, 1.5rem);
	}

	.wm-cta-band {
		padding: var(--wm-space-6, 2rem);
	}

	.wm-cta-band__actions .wm-button {
		width: 100%;
	}
}


/* ==========================================================================
   About Page Styles
   ========================================================================== */
.wm-about-hero {
	padding-block: var(--wm-space-10, 4rem);
}

.wm-section-header {
	max-width: 760px;
	margin-bottom: var(--wm-space-6, 2rem);
}

.wm-section-header--center {
	margin-inline: auto;
	text-align: center;
}

.wm-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
	gap: var(--wm-space-7, 2.5rem);
	align-items: start;
}

.wm-info-card,
.wm-why-card,
.wm-process-card,
.wm-service-summary-card {
	background: #fff;
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-lg, 16px);
	padding: var(--wm-space-6, 2rem);
	box-shadow: var(--wm-shadow-sm, 0 8px 24px rgba(0, 0, 0, 0.06));
}

\n
.wm-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wm-space-4, 1rem);
}

.wm-trust-strip__item {
	background: #fff;
	color: var(--wm-color-text, #102a43);
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-md, 12px);
	padding: var(--wm-space-5, 1.5rem);
}

.wm-trust-strip__item strong,
.wm-trust-strip__item span {
	display: block;
}

.wm-service-summary-grid,
.wm-process-grid,
.wm-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wm-space-5, 1.5rem);
}

.wm-service-summary-card {
	color: inherit;
	text-decoration: none;
}

.wm-service-summary-card:hover,
.wm-service-summary-card:focus {
	transform: translateY(-2px);
}

.wm-process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: var(--wm-color-navy, #061526);
	color: #fff;
	font-weight: 700;
	margin-bottom: var(--wm-space-3, 0.75rem);
}

.wm-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wm-space-3, 0.75rem);
	margin-top: var(--wm-space-5, 1.5rem);
}

.wm-inline-actions--center {
	justify-content: center;
}

.wm-area-list,
.wm-contact-list {
	list-style: none;
	padding: 0;
	margin: var(--wm-space-4, 1rem) 0 0;
	display: grid;
	gap: var(--wm-space-3, 0.75rem);
}

@media (max-width: 900px) {
	.wm-content-grid {
		grid-template-columns: 1fr;
	}

	.wm-trust-strip,
	.wm-service-summary-grid,
	.wm-process-grid,
	.wm-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wm-trust-strip,
	.wm-service-summary-grid,
	.wm-process-grid,
	.wm-why-grid {
		grid-template-columns: 1fr;
	}

	.wm-info-card,
	.wm-why-card,
	.wm-process-card,
	.wm-service-summary-card {
		padding: var(--wm-space-5, 1.5rem);
	}

	.wm-inline-actions .wm-button,
	.wm-cta-band__actions .wm-button {
		width: 100%;
	}
}

/* ==========================================================================
   Areas Hub Styles
   ========================================================================== */
.wm-areas-hero {
	padding-block: var(--wm-space-10, 4rem);
}

.wm-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wm-space-4, 1rem);
}

.wm-trust-strip__item,
.wm-area-card,
.wm-matrix-card,
.wm-checklist-card {
	background: #fff;
	color: var(--wm-color-text, #102a43);
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-lg, 16px);
	padding: var(--wm-space-6, 2rem);
	box-shadow: var(--wm-shadow-sm, 0 8px 24px rgba(0, 0, 0, 0.06));
}

.wm-area-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wm-space-5, 1.5rem);
}

.wm-service-area-matrix {
	display: grid;
	gap: var(--wm-space-3, 0.75rem);
	overflow-x: auto;
}

.wm-service-area-matrix__row {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr 1.5fr;
	gap: var(--wm-space-3, 0.75rem);
	align-items: start;
	padding: var(--wm-space-4, 1rem);
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-md, 12px);
	background: #fff;
}

.wm-quote-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wm-space-3, 0.75rem);
	list-style: none;
	padding: 0;
	margin: var(--wm-space-5, 1.5rem) 0 0;
}

.wm-quote-checklist li {
	padding: var(--wm-space-3, 0.75rem);
	border: 1px solid var(--wm-color-border, #d9e2ec);
	border-radius: var(--wm-radius-md, 12px);
	background: #fff;
}

@media (max-width: 900px) {
	.wm-trust-strip,
	.wm-area-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wm-service-area-matrix__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.wm-trust-strip,
	.wm-area-grid,
	.wm-quote-checklist {
		grid-template-columns: 1fr;
	}

	.wm-cta-band__actions .wm-button,
	.wm-hero__actions .wm-button {
		width: 100%;
	}
}

/* ==========================================================================
   Photo Review vs Inspection (About Page)
   ========================================================================== */
.wm-comparison-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wm-space-md);
	margin-top: var(--wm-space-md);
}

@media (min-width: 768px) {
	.wm-comparison-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--wm-space-lg);
	}
}

.wm-comparison-card {
	background-color: var(--wm-color-surface);
	padding: var(--wm-space-lg);
	border-radius: var(--wm-radius-md);
	box-shadow: var(--wm-shadow-sm);
	border-top: 4px solid var(--wm-color-blue);
}

.wm-comparison-card--alert {
	border-top-color: #e53e3e; /* Standard alert red */
}

.wm-comparison-card h3 {
	margin-top: 0;
	margin-bottom: var(--wm-space-md);
	font-size: 1.25rem;
	color: var(--wm-color-navy);
}

.wm-tick-list,
.wm-alert-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.wm-tick-list li,
.wm-alert-list li {
	position: relative;
	padding-left: 1.75rem;
	color: var(--wm-color-navy);
	font-size: 1rem;
	line-height: 1.4;
}

.wm-tick-list li::before {
	content: '\2713'; /* Checkmark */
	position: absolute;
	left: 0;
	top: 0;
	color: var(--wm-color-blue);
	font-weight: bold;
}

.wm-alert-list li::before {
	content: '!';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.2rem;
	height: 1.2rem;
	background-color: #e53e3e;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
}

/* ==========================================================================
   Fast Decision Box
   ========================================================================== */
.wm-fast-decision {
	background-color: var(--wm-color-surface-soft);
	padding: 3rem 0;
}

.wm-fast-decision-box {
	background-color: var(--wm-color-surface);
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-lg);
	padding: 2rem;
	box-shadow: var(--wm-shadow-sm);
}

.wm-fast-decision__title {
	margin-top: 0;
	margin-bottom: 1.5rem;
	text-align: center;
	color: var(--wm-color-navy);
}

.wm-fast-decision__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.wm-fast-decision__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.wm-fast-decision__col {
	padding: 1.5rem;
	border-radius: var(--wm-radius-md);
}

.wm-fast-decision__col--suitable {
	background-color: rgba(16, 185, 129, 0.05); /* Light green */
	border-left: 4px solid #10B981;
}

.wm-fast-decision__col--alternatives {
	background-color: rgba(245, 158, 11, 0.05); /* Light amber */
	border-left: 4px solid #F59E0B;
}

.wm-fast-decision__subtitle {
	font-size: 1.1rem;
	margin-top: 0;
	margin-bottom: 1rem;
}

.wm-fast-decision__list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.wm-fast-decision__list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.wm-fast-decision__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--wm-color-muted);
}

.wm-fast-decision__links {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* ==========================================================================
   Matrix Table
   ========================================================================== */
.wm-finish-assessment {
	background-color: var(--wm-color-surface);
	padding: 4rem 0;
}

.wm-matrix-table-wrapper {
	overflow-x: auto;
	margin-top: 2rem;
	border: 1px solid var(--wm-color-border);
	border-radius: var(--wm-radius-md);
}

.wm-matrix-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.wm-matrix-table th,
.wm-matrix-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--wm-color-border);
}

.wm-matrix-table th {
	background-color: var(--wm-color-surface-soft);
	font-weight: 600;
	color: var(--wm-color-navy);
}

.wm-matrix-table tbody tr:last-child td {
	border-bottom: none;
}

.wm-matrix-table__service-tag {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	background-color: var(--wm-color-sky);
	color: var(--wm-color-navy);
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: var(--wm-radius-sm);
}

@media (max-width: 767px) {
	.wm-matrix-table thead {
		display: none;
	}
	.wm-matrix-table tr {
		display: block;
		border-bottom: 2px solid var(--wm-color-border);
	}
	.wm-matrix-table td {
		display: block;
		padding-left: 50%;
		position: relative;
		border-bottom: 1px solid var(--wm-color-border);
	}
	.wm-matrix-table td::before {
		content: attr(data-label);
		position: absolute;
		left: 1rem;
		width: 45%;
		font-weight: 600;
		color: var(--wm-color-navy);
	}
}

/* ==========================================================================
   Photo Checklist
   ========================================================================== */
.wm-photo-checklist-section {
	padding: 3rem 0;
	background-color: var(--wm-color-sky);
}

.wm-photo-checklist-box {
	max-width: 800px;
	margin: 0 auto;
	background: var(--wm-color-surface);
	padding: 2rem;
	border-radius: var(--wm-radius-lg);
	box-shadow: var(--wm-shadow-sm);
	text-align: center;
}

.wm-photo-checklist {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	text-align: left;
	display: inline-block;
}

.wm-photo-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.wm-photo-checklist__icon {
	color: var(--wm-color-blue);
	flex-shrink: 0;
}

.wm-photo-checklist__actions {
	margin-top: 2rem;
}

/* ==========================================================================
   Service Comparison Cards
   ========================================================================== */
.wm-comparison-cards-section {
	background-color: var(--wm-color-surface-soft);
	padding: 4rem 0;
}

.wm-comparison-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.wm-comparison-card {
	background: var(--wm-color-surface);
	padding: 2rem;
	border-radius: var(--wm-radius-lg);
	box-shadow: var(--wm-shadow-sm);
	border-top: 4px solid var(--wm-color-sky);
}

.wm-comparison-card__title {
	margin-top: 0;
	color: var(--wm-color-navy);
}

.wm-comparison-card__desc {
	margin-bottom: 0;
}

/* ==========================================================================
   Service Hero & Trust Strip (Ticket-P5-BLOCKER-009)
   ========================================================================== */

.wm-section--trust {
	background: var(--wm-color-navy, #061526);
	padding-block: clamp(2rem, 4vw, 4rem);
}

.wm-section--trust .wm-container {
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.wm-trust-strip--service {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: stretch;
	justify-content: center;
}

.wm-trust-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 74px;
	background: #fff;
	color: var(--wm-color-navy, #061526);
	border: 1px solid rgba(217, 226, 236, 0.9);
	border-radius: 12px;
	padding: 1.1rem 1.25rem;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.wm-trust-card__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 900px) {
	.wm-trust-strip--service {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.wm-trust-strip--service {
		grid-template-columns: 1fr;
	}

	.wm-trust-card {
		min-height: auto;
	}
}

.wm-service-hero {
	background: #fff;
	padding-block: clamp(2.5rem, 5vw, 5rem);
}

.wm-service-hero .wm-container {
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.wm-service-hero__content {
	max-width: 860px;
}

.wm-service-hero h1 {
	max-width: 900px;
	margin: 0;
}

.wm-service-hero__lede {
	max-width: 820px;
	margin-top: 1rem;
}

.wm-service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

@media (max-width: 560px) {
	.wm-service-hero__actions .wm-button {
		width: 100%;
	}
}
