/*
Theme Name: My Mobility Center Child
Theme URI: https://mymobilitycenter.com
Description: Institutional child theme of GeneratePress for My Mobility Center
Author: My Mobility Center, LLC
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mmc-child
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---- Color tokens ---- */
:root {
	--color-brand-maroon: #8B0000;
	--color-brand-maroon-deep: #6B0000;
	--color-bg-warm-white: #FAF8F5;
	--color-bg-cream-tint: #F2EDE5;
	--color-text-default: #1A1F2E;
	--color-text-muted: #5B6478;
	--color-text-on-dark: #FAF8F5;
	--color-border-soft: #E6E0D6;
	--color-navy-accent: #0F2A44;
	--color-navy-accent-deep: #091B2E;
	--color-sage: #8FA48F;
	--color-success: #3A6B47;
}

/* ---- Defaults ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-default);
	background: var(--color-bg-warm-white);
}

/* ---- Headings (Source Serif 4 base; H3/H4 are Inter per spec) ---- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
	color: var(--color-text-default);
	margin: 0 0 0.5em;
}

h1 {
	font-size: 56px;
	font-weight: 600;
	line-height: 1.15;
}

h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
}

h3 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

h4 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 600;
}

/* ---- Buttons ---- */
.mmc-button-primary {
	display: inline-block;
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}
.mmc-button-primary:hover {
	background: var(--color-brand-maroon-deep);
}

.mmc-button-outline {
	display: inline-block;
	background: transparent;
	color: var(--color-brand-maroon);
	border: 1.5px solid var(--color-brand-maroon);
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.mmc-button-outline:hover {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
}

.mmc-text-link {
	color: var(--color-brand-maroon);
	text-decoration: none;
}
.mmc-text-link:hover {
	text-decoration: underline;
}

/* ---- Card ---- */
.mmc-card {
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: 32px 28px;
	background: var(--color-bg-warm-white);
}
/* Contextual card background: opposite of the section it sits on */
.mmc-section-warm-white .mmc-card { background: var(--color-bg-cream-tint); }
.mmc-section-cream-tint .mmc-card { background: var(--color-bg-warm-white); }

/* ---- Section background utilities ---- */
.mmc-section-warm-white {
	background: var(--color-bg-warm-white);
	padding: 96px 0;
}
.mmc-section-cream-tint {
	background: var(--color-bg-cream-tint);
	padding: 96px 0;
}
.mmc-section-navy {
	background: var(--color-navy-accent);
	color: var(--color-text-on-dark);
	padding: 96px 0;
}
.mmc-section-navy h1,
.mmc-section-navy h2,
.mmc-section-navy h3 {
	color: var(--color-text-on-dark);
}

/* ---- Container ---- */
.mmc-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Top utility bar ---- */
.mmc-utility-bar {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	padding: 16px 0;
	font-size: 14px;
}
.mmc-utility-bar a {
	color: var(--color-text-on-dark);
	text-decoration: none;
}

/* ---- Responsive: tablet ---- */
@media (max-width: 768px) {
	h1 { font-size: 40px; }
	h2 { font-size: 28px; }
	.mmc-section-warm-white,
	.mmc-section-cream-tint,
	.mmc-section-navy {
		padding: 64px 0;
	}
}

/* ---- Responsive: mobile ---- */
@media (max-width: 480px) {
	body { font-size: 15px; }
	h1 { font-size: 32px; }
}

/* ============================================================
   v1 CONTENT DESIGN SYSTEM
   Migrated from design/homepage-mockup.html (Phase 2B).
   Class-based component styles backing the Custom HTML blocks
   pasted into WordPress pages. Header/footer/utility-bar chrome
   is intentionally NOT migrated: GeneratePress renders those and
   uses the same .site-header / .site-footer class names. Design
   tokens + base typography already live above in this file.
   ============================================================ */

/* Content container. :not(.grid-container) keeps this generic class from
   landing on GeneratePress's site wrapper (<div class="site grid-container
   container">), which would otherwise clamp the WHOLE site to 1200px. */
.container:not(.grid-container) {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
}

.lead {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-default);
}

.section-intro {
	font-size: 18px;
	color: var(--color-text-muted);
	max-width: 640px;
	margin: 16px auto 0;
	text-align: center;
}

/* ---- Content buttons (mockup naming, reused across v1 pages) ---- */
.btn-primary {
	display: inline-block;
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--color-brand-maroon-deep); }

.btn-outline {
	display: inline-block;
	background: transparent;
	color: var(--color-brand-maroon);
	border: 1.5px solid var(--color-brand-maroon);
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--color-brand-maroon); color: var(--color-text-on-dark); }

.text-link {
	color: var(--color-brand-maroon);
	text-decoration: none;
	font-weight: 600;
}
.text-link:hover { text-decoration: underline; }

.mmc-btn-text-link {
	display: inline-block;
	background: transparent;
	color: var(--color-brand-maroon);
	border: 1.5px solid var(--color-brand-maroon);
	border-radius: 6px;
	padding: 10px 22px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}
.mmc-btn-text-link:hover {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
}

.btn-outline-light {
	display: inline-block;
	background: transparent;
	color: var(--color-text-on-dark);
	border: 1.5px solid var(--color-text-on-dark);
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-light:hover {
	background: var(--color-text-on-dark);
	color: var(--color-navy-accent);
}

/* ---- Section utilities ---- */
.section { padding: 96px 0; }
.bg-warm-white { background: var(--color-bg-warm-white); }
.bg-cream-tint { background: var(--color-bg-cream-tint); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin: 0; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }

/* ---- Hero ---- */
.hero {
	background: var(--color-bg-warm-white);
	padding: 120px 0;
}
.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.hero .eyebrow { display: block; margin-bottom: 20px; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 28px; max-width: 560px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-figure { margin: 0; }
.hero-figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
}
.hero-caption {
	font-family: 'Source Serif 4', Georgia, serif;
	font-style: italic;
	font-size: 15px;
	color: var(--color-text-muted);
	margin-top: 14px;
}

/* ---- Audience card grid (Five ways to engage) ---- */
.audience-card-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
.audience-card-link {
	flex: 0 1 calc(33.333% - 16px);
	display: block;
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.audience-card-link:hover {
	border-color: var(--color-brand-maroon);
	transform: translateY(-2px);
}
.audience-card-link img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}
.audience-card-link h3 {
	margin: 0;
	padding: 24px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-text-default);
}

/* ---- Stat lines (What we have built) ---- */
.stat-lines {
	max-width: 540px;
	margin: 0 auto;
	text-align: center;
}
.stat-line {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-default);
	line-height: 2;
}

/* ---- Final invitation (maroon CTA band) ---- */
.final-invite {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	padding: 96px 0;
	text-align: center;
}
.final-invite .inner { max-width: 720px; margin: 0 auto; }
.final-invite h2 { color: var(--color-text-on-dark); margin-bottom: 22px; }
.final-invite p {
	font-size: 18px;
	color: rgba(250, 248, 245, 0.9);
	margin: 0 0 32px;
}
.final-ctas {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.final-ctas .phone-link {
	color: var(--color-text-on-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
}
.final-ctas .phone-link:hover { text-decoration: underline; }

/* ---- Content responsive ---- */
@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.hero { padding: 80px 0; }
	.hero .container { grid-template-columns: 1fr; gap: 40px; }
	.hero .lead { max-width: none; }
	.audience-card-grid { gap: 16px; }
	.audience-card-link { flex-basis: calc(50% - 8px); }
	.final-invite { padding: 64px 0; }
}
@media (max-width: 480px) {
	.audience-card-grid { gap: 16px; }
	.audience-card-link { flex-basis: 100%; }
}

/* ============================================================
   v1 CONTENT DESIGN SYSTEM — additional components
   Consolidated from the 11 audience/spine mockups. Shared
   selectors reconciled to a single consistent value. Header/
   footer chrome still excluded (GeneratePress renders those).
   ============================================================ */

.eyebrow-accent {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-brand-maroon);
	margin-bottom: 16px;
}

/* Left-aligned segment heads (sub-audience sections) */
.segment-head { margin-bottom: 48px; }
.segment-head h2 { margin: 0 0 16px; }
.segment-intro {
	font-size: 18px;
	color: var(--color-text-muted);
	max-width: 720px;
	margin: 0;
}

/* Centered body paragraph + centered CTA wrapper */
.section-body {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	color: var(--color-text-default);
}
.center-cta { text-align: center; margin-top: 28px; }

/* Restrained centered hero (values / leadership / case-studies / contact) */
.hero-centered {
	background: var(--color-bg-warm-white);
	padding: 120px 0;
	text-align: center;
}
.hero-centered .inner { max-width: 720px; margin: 0 auto; }
.hero-centered h1 { margin-bottom: 24px; }
.hero-centered .lead { max-width: 600px; margin: 0 auto; }

/* Sub-audience navigation row */
.subnav-bar { padding: 32px 0; }
.subnav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 40px;
}

/* Typographic service blocks */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}
.service-block h3 { margin: 0 0 10px; }
.service-block p { margin: 0; font-size: 16px; color: var(--color-text-default); }

/* How-we-work steps */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.step-num {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 48px;
	font-weight: 600;
	color: var(--color-brand-maroon);
	line-height: 1;
	margin-bottom: 16px;
}
.step h3 { margin-bottom: 12px; }
.step p { margin: 0; font-size: 16px; color: var(--color-text-default); max-width: 280px; }

/* Values statement (two-column 60/40) */
.values-grid {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 56px;
	align-items: center;
}
.values-text h2 { margin-bottom: 20px; }
.values-text .lead { max-width: 520px; margin-bottom: 24px; }
.values-text .lead:last-of-type { margin-bottom: 0; }
.values-figure { margin: 0; }
.values-figure img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 8px;
}

/* Contracting / financing cards */
.finance-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.finance-card {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: 28px 24px;
}
.finance-card h3 { margin-bottom: 12px; }
.finance-card p { margin: 0; font-size: 15px; color: var(--color-text-default); }
.finance-note {
	text-align: center;
	font-size: 15px;
	color: var(--color-text-muted);
	max-width: 720px;
	margin: 40px auto 0;
}

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border-soft); }
.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text-default);
	transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	flex-shrink: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-brand-maroon);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--color-brand-maroon); }
.faq-item p {
	margin: 0;
	padding: 0 0 20px 0;
	font-size: 16px;
	color: var(--color-text-default);
	max-width: 720px;
}

/* Brand partnership grid (manufacturer-partners) */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	border-top: 1px solid var(--color-border-soft);
	border-left: 1px solid var(--color-border-soft);
}
.brand-grid div {
	padding: 20px 16px;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text-default);
	border-bottom: 1px solid var(--color-border-soft);
	border-right: 1px solid var(--color-border-soft);
}

/* Leader cards (about + leadership; reconciled to the expanded 120px version) */
.leader-card {
	max-width: 800px;
	margin: 0 auto;
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: 40px 32px;
	display: flex;
	gap: 32px;
	align-items: flex-start;
}
.leader-card + .leader-card { margin-top: 48px; }
.leader-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.leader-name { font-size: 22px; font-weight: 600; color: var(--color-text-default); }
.leader-title { font-size: 14px; color: var(--color-text-muted); letter-spacing: 0.02em; margin-top: 4px; }
.leader-bio { font-size: 16px; color: var(--color-text-default); margin-top: 16px; }
.leader-creds { font-size: 14px; color: var(--color-text-muted); margin-top: 12px; line-height: 1.6; }
.leader-contact { margin-top: 12px; font-size: 14px; }
.leader-contact a { color: var(--color-brand-maroon); font-weight: 600; text-decoration: none; margin-right: 18px; }
.leader-contact a:hover { text-decoration: underline; }
.leader-more { text-align: center; margin-top: 28px; }

/* Belief statement sequence (values) */
.belief-list { max-width: 720px; margin: 0 auto; text-align: center; }
.belief + .belief { margin-top: 64px; }
.belief-num {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 32px;
	font-weight: 600;
	color: var(--color-brand-maroon);
	line-height: 1;
	margin-bottom: 14px;
}
.belief h3 { font-size: 22px; margin-bottom: 14px; }
.belief p { font-size: 17px; color: var(--color-text-default); max-width: 600px; margin: 0 auto; }

/* Scriptural foundation (values) */
.scripture-section { max-width: 720px; margin: 0 auto; text-align: center; }
.scripture-section h2 { margin-bottom: 28px; }
.scripture {
	font-family: 'Source Serif 4', Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.4;
	color: var(--color-text-default);
	max-width: 600px;
	margin: 0 auto;
}
.scripture-attr { font-size: 14px; color: var(--color-text-muted); margin-top: 16px; }
.scripture-body { font-size: 17px; color: var(--color-text-default); max-width: 600px; margin: 28px auto 0; }

/* "What this does not mean" entries (values) */
.saying-list { max-width: 720px; margin: 0 auto; text-align: center; }
.saying { font-size: 17px; color: var(--color-text-default); margin: 0; }
.saying strong { font-weight: 600; }
.saying + .saying { margin-top: 10px; }
.saying-entry + .saying-entry { margin-top: 32px; }

/* Case study cards (case-studies) */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: 36px 32px;
}
.case-tag {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-brand-maroon);
}
.case-card h3 { font-size: 22px; margin-top: 8px; }
.case-block { margin-top: 24px; }
.case-block + .case-block { margin-top: 16px; }
.case-label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
}
.case-block p { margin: 6px 0 0; font-size: 15px; color: var(--color-text-default); }

/* Contact method cards + audience routing + hours split (contact) */
.contact-card {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
}
.contact-card h3 { margin: 0 0 12px; }
.contact-card p { margin: 0; font-size: 16px; color: var(--color-text-default); }
.contact-link { margin-top: 18px; font-size: 16px; font-weight: 600; color: var(--color-brand-maroon); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.route-block h3 { margin: 0 0 10px; font-size: 18px; }
.route-block p { margin: 0 0 16px; font-size: 15px; color: var(--color-text-default); }
.contact-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	max-width: 900px;
	margin: 0 auto;
}
.contact-split h3 { margin: 0 0 12px; }
.contact-split p { margin: 0; font-size: 16px; color: var(--color-text-default); }

/* Additional-component responsive */
@media (max-width: 768px) {
	.brand-grid { grid-template-columns: repeat(3, 1fr); }
	.service-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
	.steps-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
	.values-grid { grid-template-columns: 1fr; gap: 40px; }
	.finance-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.case-grid { grid-template-columns: 1fr; }
	.contact-split { grid-template-columns: 1fr; gap: 40px; }
	.scripture { font-size: 20px; }
}
@media (max-width: 480px) {
	.subnav { flex-direction: column; align-items: center; gap: 14px; }
	.brand-grid { grid-template-columns: repeat(2, 1fr); }
	.service-grid { grid-template-columns: 1fr; gap: 32px; }
	.steps-grid { grid-template-columns: 1fr; gap: 32px; }
	.finance-grid { grid-template-columns: 1fr; gap: 16px; }
	.leader-card { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
}

/* ============================================================
   PHASE 4 — HEADER CHROME (GeneratePress-compatible selectors)
   Logo sizing, primary-nav styling, the Company dropdown, and the
   "Schedule Free Consultation" header button (menu item .header-cta).
   Targets GeneratePress's real header output (.inside-header /
   .header-image / .main-navigation), NOT the raw mockup markup.
   ============================================================ */

/* Logo: medium horizontal lockup, ~72px tall (~375px wide).
   Higher specificity than GeneratePress's generated width rule, so
   width:auto wins and the logo keeps its natural aspect ratio. */
.site-header .site-logo img.header-image,
.site-header .site-logo img {
	height: 72px;
	width: auto;
	max-width: none;
}

/* Header bar spans the full viewport, with the logo and nav padded in
   from the screen edges (40px) instead of stuck inside a centered 1200px
   box. This removes the large empty gap to the left of the logo. */
.site-header .inside-header {
	max-width: 100%;
	padding-left: 24px;
	padding-right: 24px;
}

/* Keep the menu next to the logo. GeneratePress's "Float Right" sets
   margin-left:auto on the nav, which pushes it to the far-right edge and
   leaves a large gap in the middle of a full-width bar. Replace that with
   a fixed gap so the menu sits just to the right of the logo. */
.nav-float-right .site-header #site-navigation {
	margin-left: 20px;
}

/* Primary nav sits transparently on the warm-white header bar */
.main-navigation,
.main-navigation ul,
.main-navigation .main-nav > ul {
	background: transparent;
}

/* When the nav is placed BELOW the header (logo row, then nav row):
   align the menu to the same 40px edge as the logo, add a hairline
   divider above it, and push the Schedule button to the far right. */
.nav-below-header .inside-navigation,
.nav-above-header .inside-navigation {
	max-width: 100%;
	padding-left: 40px;
	padding-right: 40px;
}
.nav-below-header .main-navigation,
.nav-above-header .main-navigation {
	border-top: 1px solid var(--color-border-soft);
}
.nav-below-header .main-nav > ul > li.header-cta {
	margin-left: auto;
}
.main-navigation .main-nav > ul > li > a {
	color: var(--color-text-default);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.005em;
}
/* Tighten item spacing so six items + the button fit on one line
   beside the medium logo (GP default padding is ~20px each side). */
.main-navigation .main-nav ul li a {
	padding-left: 12px;
	padding-right: 12px;
}
.main-navigation .main-nav > ul > li > a:hover,
.main-navigation .main-nav > ul > li.current-menu-item > a {
	color: var(--color-brand-maroon);
}

/* Company dropdown (the "About" submenu) */
.main-navigation ul ul {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
}
.main-navigation ul ul li a {
	color: var(--color-text-default);
	font-size: 14px;
	font-weight: 500;
}
.main-navigation ul ul li a:hover {
	color: var(--color-brand-maroon);
	background: var(--color-bg-cream-tint);
}

/* "Schedule Free Consultation" header button (menu item .header-cta,
   appended in functions.php). Selectors are deliberately at least as
   specific as GeneratePress's own `.main-navigation .main-nav ul li a`
   (0-2-3) and our generic nav rules, PLUS the .header-cta class, so the
   button's padding, color, and size win the cascade instead of inheriting
   GP's tall nav padding and our dark nav-text color. */
.main-navigation li.header-cta {
	display: flex;
	align-items: center;          /* vertically center the button in the nav row */
}
.main-navigation .main-nav ul li.header-cta > a {
	display: inline-block;
	background: var(--color-brand-maroon);
	color: #ffffff;               /* pure white for high contrast on maroon */
	border-radius: 6px;           /* 6px: not pill, not square */
	padding: 9px 16px;            /* trimmed side padding so the button doesn't overflow the header row on desktop */
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;               /* keeps button height close to the nav text height */
	text-transform: none;
}
.main-navigation .main-nav ul li.header-cta > a:hover,
.main-navigation .main-nav ul li.header-cta > a:focus {
	background: var(--color-brand-maroon-deep);
	color: #ffffff;
}

/* Desktop: force logo + nav + CTA onto a SINGLE header row. The menu
   wraps the button to a second line when its flex row isn't spanning the
   full header width (so margin-left:auto has no free space to consume).
   Force the whole chain to stretch and stay nowrap. !important is used to
   beat GeneratePress's own nav flex rules, which load from a separate
   module we can't reliably out-specify. */
@media (min-width: 769px) {
	/* keep logo + nav on one line (no wrap at the header level) */
	.site-header .inside-header {
		flex-wrap: nowrap !important;
	}
	/* nav fills all header width to the right of the logo */
	.nav-float-right .site-header #site-navigation {
		flex: 1 1 auto !important;
	}
	.site-header #site-navigation .inside-navigation {
		width: 100% !important;
	}
	.site-header #primary-menu.main-nav {
		width: 100% !important;
		flex: 1 1 auto !important;
	}
	/* the menu itself: one nowrap flex row spanning the full nav width */
	.main-navigation .main-nav > ul {
		display: flex !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		width: 100% !important;
	}
	/* push only the CTA to the far right edge */
	.main-navigation .main-nav > ul > li.header-cta {
		margin-left: auto !important;
	}
}

/* ============================================================
   PHASE 4 (nav restructure) — STICKY HEADER + MEGA-MENU
   ============================================================ */

/* ===== STICKY HEADER ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--color-bg-warm-white);
	box-shadow: 0 1px 0 var(--color-border-soft);
	transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Hover-trigger fallback (in case GP's JS toggle does not fire) */
.main-navigation .menu > li.menu-item-has-children:hover > .sub-menu,
.main-navigation .menu > li.menu-item-has-children > .sub-menu:hover {
	display: block;
}

/* ===== /solutions PAGE — category grid (5 / 3 / 2 / 1 columns) ===== */
.solutions-grid {
	grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1399px) {
	.solutions-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.solutions-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   NAV CHEVRON WRAP FIX (block-level li, positioning-safe)
   GP renders the dropdown chevron as a sibling <span
   class="dropdown-menu-toggle"> after the link inside each top-level
   <li>. Keep the link + chevron on one line WITHOUT putting flex on the
   <li>: inline-flex on the li broke the absolute-positioned dropdowns
   (they detached and clipped their first item). Block-level li +
   white-space:nowrap keeps the inline link + chevron together. The
   HomePro panels anchor to the full-width header (not the <li>), so the
   <li> is left static — see the HomePro panel block below.
   ============================================================ */
.main-navigation .menu > li {
	white-space: nowrap;
}
.main-navigation .menu > li > a {
	white-space: nowrap;
}
/* The dropdown arrow toggle lives INSIDE the parent <a> (a > .dropdown-menu-toggle),
   not as a direct child of the <li>. GP defaults it to padding-left:10px;
   padding-right:20px, so dropdown items got ~8px more trailing space than
   non-dropdown items (Our Solutions, Contact). Tighten it: arrow hugs its label,
   and the 12px right padding matches a non-dropdown link's trailing space so the
   inter-item rhythm is even. */
.main-navigation .menu > li.menu-item-has-children > a > .dropdown-menu-toggle {
	padding-left: 6px !important;
	padding-right: 12px !important;
	white-space: nowrap;
}

/* ============================================================
   HOMEPRO-STYLE NAV PANELS (Who We Serve, Solutions, About Us, Resources)
   Unified dropdown panels. Solutions = 5-column hierarchical; the other
   three = 3-column (description / buttons / image). Corrections vs spec:
   (1) panels anchor to the full-width sticky header and center in the
   viewport (spec centered on the narrow <li>, which clipped); (2) simple-
   panel buttons use explicit grid-column placement (spec's grid-area on
   every item overlapped); (3) Solutions 3rd level is force-shown with
   !important (GP hides it); (4) display:grid !important so the hover
   fallback's display:block doesn't flatten the grid.
   ============================================================ */

/* Anchor wide panels to the full-width sticky header (desktop): make the
   panel-parent li + nav wrappers static so the absolute panel resolves up
   to .site-header and centers in the viewport instead of clipping. */
@media (min-width: 769px) {
	.main-navigation,
	.main-navigation .inside-navigation,
	.main-navigation .main-nav,
	.main-navigation .menu,
	.main-navigation .menu > li.menu-item-has-children {
		position: static;
	}
}

/* Shared panel container (all four dropdowns) */
.main-navigation .menu > li.menu-item-has-children > .sub-menu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
	padding: 32px 40px;
	margin: 0;
	list-style: none;
	z-index: 1000;
	/* reset the chevron-fix nowrap that inherits in; lets the description wrap */
	white-space: normal;
}

/* ===== SIMPLE PANEL (Who We Serve, About Us, Resources): desc | buttons | image ===== */
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu {
	width: 760px;
	max-width: 92vw;
	display: grid !important;
	grid-template-columns: 220px auto 1fr; /* image | buttons | info */
	column-gap: 32px;
	row-gap: 0; /* spacing between buttons is via their margin, so the side
	               columns' row-span isn't inflated by gaps */
	align-items: center;
	align-content: center;
	min-height: 210px;
}
/* Description (left column) — CSS-injected per panel class */
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::before {
	grid-column: 3;
	grid-row: 1 / span 50;
	align-self: center;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.5;
}
.main-navigation .menu > li.who-we-serve-panel > .sub-menu::before {
	content: "We serve five distinct customer types across America with the equipment, expertise, and accountability the work requires.";
}
.main-navigation .menu > li.about-us-panel > .sub-menu::before {
	content: "Leadership, values, careers, and the manufacturer partnerships behind the brand.";
}
.main-navigation .menu > li.resources-panel > .sub-menu::before {
	content: "Case studies of real engagements across school districts, transit, healthcare, and enterprise.";
}
.main-navigation .menu > li.locations-panel > .sub-menu::before {
	content: "No matter where you are in the nation, we are here to keep you moving, with local technicians and local accountability in every market we serve.";
}
/* Image (right column) */
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::after {
	content: "";
	grid-column: 1;
	grid-row: 1 / span 50;
	align-self: center;
	width: 100%;
	height: 170px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 6px;
}
.main-navigation .menu > li.who-we-serve-panel > .sub-menu::after {
	background-image: url('/wp-content/uploads/2026/06/audience-individuals-families.jpg');
}
.main-navigation .menu > li.about-us-panel > .sub-menu::after {
	background-image: url('/wp-content/uploads/2026/06/about-leadership.jpg');
}
.main-navigation .menu > li.resources-panel > .sub-menu::after {
	background-image: url('/wp-content/uploads/2026/06/about-leadership.jpg');
}
.main-navigation .menu > li.locations-panel > .sub-menu::after {
	/* Default = national; locations-panel.js swaps this per state link on hover. */
	background-image: var(--loc-panel-img, url('/wp-content/uploads/2026/06/locations-national.jpg'));
}
/* Buttons (center column), stacked one per row */
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li {
	grid-column: 2;
	display: block;
	padding: 0;
	margin: 0 0 8px 0;
	border: none;
	list-style: none;
}
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li:last-child {
	margin-bottom: 0;
}
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li > a {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border-radius: 4px;
	padding: 10px 16px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	text-align: left;
	transition: background 0.2s ease;
}
.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li > a:hover {
	background: var(--color-brand-maroon-deep);
}

/* ===== SOLUTIONS DROPDOWN: desktop = two-level flyout (below) / mobile = GP native accordion =====
   The old 5-column grid panel was removed. On desktop the flyout block below
   replaces it (it sets the GP grid .sub-menu to display:none and shows the
   flyout instead). On mobile we intentionally fall back to GeneratePress's
   native collapsible sub-menu, so "Our Solutions" behaves like a standard
   mobile dropdown: its dropdown-toggle stays tappable and sub-items
   collapse/expand normally. The grid CSS had to go because it broke mobile --
   it hid the toggles, forced the grid layout + thumbnails, and force-opened the
   third level. (Desktop's stray toggle is hidden inside the flyout @media block.) */
/* The walker-injected description is unused in this pattern */
.solutions-category-description {
	display: none !important;
}

/* ============================================================
   SOLUTIONS TWO-LEVEL HOVER-FLYOUT (desktop)
   Replaces the grid panel above on desktop only. A narrow left list of the
   six category names; hovering one reveals its panel (description + sub-item
   buttons + image) on the right. The injected .mmc-solutions-two-level-menu
   anchors to the full-width sticky header exactly like the other panels (the
   nav wrappers + this <li> are position:static on desktop). On mobile the GP
   grid above is kept and this flyout is hidden, so Solutions stays reachable
   by touch. Active-panel switching is handled by solutions-flyout.js.
   ============================================================ */
.mmc-solutions-two-level-menu { display: none; }

@media (min-width: 769px) {
	/* Hide GP's grid sub-menu on desktop; the flyout replaces it. */
	.main-navigation .menu > li.solutions-mega-menu > .sub-menu {
		display: none !important;
	}
	/* Hide the GP dropdown toggle on desktop only (the flyout opens on hover);
	   on mobile the toggle stays visible so the native accordion is tappable. */
	.main-navigation .menu > li.solutions-mega-menu .dropdown-menu-toggle {
		display: none !important;
	}

	/* Flyout container: anchored + centered under the header, like the other
	   panels; revealed when Our Solutions is hovered/focused. */
	.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-two-level-menu {
		display: flex;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 100%;
		width: 880px;
		max-width: 95vw;
		background: var(--color-bg-warm-white);
		border: 1px solid var(--color-border-soft);
		border-radius: 8px;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
		overflow: hidden;
		z-index: 1000;
		white-space: normal;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.15s ease, visibility 0.15s ease;
	}
	.main-navigation .menu > li.solutions-mega-menu:hover .mmc-solutions-two-level-menu,
	.main-navigation .menu > li.solutions-mega-menu:focus-within .mmc-solutions-two-level-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* Left column: category list */
	.mmc-solutions-categories {
		list-style: none;
		margin: 0;
		padding: 16px 0;
		width: 280px;
		flex-shrink: 0;
		background: var(--color-bg-warm-white);
		border-right: 1px solid var(--color-border-soft);
	}
	.mmc-solutions-category { margin: 0; padding: 0 12px; }
	.mmc-solutions-category > a {
		display: block;
		margin: 3px 0;
		padding: 10px 16px;
		border-radius: 4px;
		background: var(--color-brand-maroon);
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color: var(--color-text-on-dark);
		text-decoration: none;
		transition: background 0.15s ease;
	}
	.mmc-solutions-category > a::after {
		content: "\203A";
		float: right;
		color: rgba(255, 255, 255, 0.7);
		font-size: 18px;
		line-height: 1.4;
	}
	/* hovered/open category = darker maroon, so the active panel is identifiable */
	.mmc-solutions-category:hover > a,
	.mmc-solutions-category.is-active > a {
		background: var(--color-brand-maroon-deep);
	}

	/* Right column: per-category panels */
	.mmc-solutions-panels {
		flex: 1;
		position: relative;
		background: #fff;
		padding: 28px 32px;
		min-height: 300px;
	}
	.mmc-solutions-panel { display: none; }
	.mmc-solutions-panel.is-visible { display: block; }
	.mmc-solutions-panel-content {
		display: grid;
		grid-template-columns: 1fr 0.8fr;
		gap: 28px;
		align-items: start;
	}
	.mmc-solutions-panel-text h3 {
		font-family: 'Source Serif 4', serif;
		font-size: 22px;
		font-weight: 600;
		color: var(--color-text-default);
		margin: 0 0 10px;
		line-height: 1.2;
	}
	.mmc-solutions-panel-text p {
		font-family: 'Inter', sans-serif;
		font-size: 13px;
		color: var(--color-text-muted);
		line-height: 1.5;
		margin: 0 0 16px;
	}
	.mmc-solutions-panel-items {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}
	.mmc-solutions-panel-items li { margin: 0; }
	.mmc-solutions-panel-items a {
		display: inline-block;
		background: var(--color-brand-maroon);
		border-radius: 4px;
		padding: 8px 14px;
		font-family: 'Inter', sans-serif;
		font-size: 12px;
		font-weight: 500;
		color: var(--color-text-on-dark);
		text-decoration: none;
		transition: background 0.15s ease;
	}
	.mmc-solutions-panel-items a:hover {
		background: var(--color-brand-maroon-deep);
	}
	.mmc-solutions-panel-image {
		border-radius: 8px;
		overflow: hidden;
		aspect-ratio: 4 / 3;
	}
	.mmc-solutions-panel-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
}

/* ===== OVERRIDE GeneratePress nav-ul hiding on Solutions flyout ===== */
/* GeneratePress hides all nested <ul>s in the nav with .main-navigation ul ul
   (position:absolute; left:-99999px; opacity:0; height:0; overflow:hidden).
   The flyout's category list AND sub-item lists are both <ul>s and get caught.
   Restore them with explicit overrides matching the flyout's intended layout. */
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-categories,
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-panel-items {
	position: static !important;
	left: auto !important;
	opacity: 1 !important;
	height: auto !important;
	overflow: visible !important;
	pointer-events: auto !important;
	float: none !important;
}
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-categories {
	width: 280px !important;
}
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-panel-items {
	width: auto !important;
	display: flex !important;       /* GP forces nested <ul> to display:block */
	flex-wrap: wrap;
	gap: 6px;
}
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-categories > li,
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-panel-items > li {
	float: none !important;
	width: auto !important;
}
/* GP forces nav links to display:block; keep the sub-item pills inline so they
   wrap into a row instead of stacking full-width. */
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-panel-items > li > a {
	display: inline-block !important;
}
/* GP sets a dark nav-link color at higher specificity; force white on the
   maroon pills (both the category rail and the sub-item buttons). */
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-categories > li > a,
.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-panel-items > li > a {
	color: var(--color-text-on-dark) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu {
		width: 90vw;
		grid-template-columns: 1fr;
	}
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::before {
		grid-column: 1;
		grid-row: auto;
	}
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li {
		grid-column: 1;
	}
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::after {
		grid-column: 1;
		grid-row: auto;
		height: 140px;
	}
}
@media (max-width: 768px) {
	/* === MOBILE NAV = STANDARD VERTICAL ACCORDION ===
	   At <=768px GeneratePress shows the hamburger and runs its native toggle
	   accordion. Our desktop dropdowns are "panels" (position:absolute, centered
	   with translateX, fixed 760-880px widths, CSS grids, decorative image
	   columns) -- on mobile that shoves them off-screen and forces sideways
	   scrolling. Neutralize all of that here so every dropdown stacks full-width
	   on one screen. Show/hide is left to GP (we never touch the hidden state's
	   left/opacity/height), so tap-to-expand still works at every level:
	   tap a top item -> its categories; tap a category -> its sub-items. */
	.main-navigation .menu > li.menu-item-has-children > .sub-menu,
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu {
		transform: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		display: block !important;
		grid-template-columns: none !important;
		box-shadow: none !important;
		border: none !important;
		border-radius: 0 !important;
		padding: 0 !important;
		background: transparent !important;
	}
	/* When GP expands a level, force it in-flow + full width (our desktop
	   absolute/transform/fixed-width would otherwise push it off-screen). */
	.main-navigation.toggled .main-nav ul ul.toggled-on {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		width: 100% !important;
	}
	/* Drop the simple panels' decorative description + image columns. */
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::before,
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu::after {
		display: none !important;
	}
	/* Strip the simple panels' maroon page-buttons back to plain native links,
	   so every mobile dropdown matches Solutions (.main-navigation ul ul li a). */
	.main-navigation .menu > li.menu-item-has-children:not(.solutions-mega-menu) > .sub-menu > li > a {
		background: transparent !important;
		color: var(--color-text-default) !important;
		border-radius: 0 !important;
		font-size: 14px !important;
		font-weight: 500 !important;
	}
	/* Sub-menu items become full-width rows (undo grid-column placement). */
	.main-navigation .menu > li.menu-item-has-children > .sub-menu > li {
		grid-column: auto !important;
		width: 100% !important;
		float: none !important;
		margin: 0 !important;
	}
	/* The desktop Solutions flyout never shows on mobile. */
	.main-navigation .menu > li.solutions-mega-menu .mmc-solutions-two-level-menu {
		display: none !important;
	}
}

/* ============================================================
   DROPDOWN HOVER-BRIDGE
   The panels open at the bottom of the (tall) header, leaving a strip of
   empty header space between the nav link and the panel. Moving the cursor
   down across it would drop :hover and close the panel. This transparent
   ::after on each dropdown link spans that gap (shown only on hover) so the
   hover path from link to panel stays continuous.
   ============================================================ */
.main-navigation .menu > li.menu-item-has-children > a {
	position: relative;
}
.main-navigation .menu > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 60px;
	display: none;
}
.main-navigation .menu > li.menu-item-has-children:hover > a::after {
	display: block;
}

/* ============================================================
   TOP UTILITY BAR (rendered via generate_before_header hook)
   Contact info left, social icons right. NOT sticky — scrolls away;
   the main .site-header keeps its sticky behavior.
   ============================================================ */
.mmc-utility-bar {
	background: var(--color-brand-maroon-deep);
	color: var(--color-text-on-dark);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.4;
	padding: 0;
}
.mmc-utility-bar-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 8px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.mmc-utility-contact {
	display: flex;
	align-items: center;
	gap: 20px;
}
.mmc-utility-contact a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-text-on-dark);
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.mmc-utility-contact a:hover {
	opacity: 0.85;
	color: var(--color-text-on-dark);
}
.mmc-utility-contact svg {
	flex-shrink: 0;
}
.mmc-utility-social {
	display: flex;
	align-items: center;
	gap: 14px;
}
.mmc-utility-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-on-dark);
	transition: opacity 0.2s ease;
	width: 20px;
	height: 20px;
}
.mmc-utility-social a:hover {
	opacity: 0.75;
	color: var(--color-text-on-dark);
}
.mmc-utility-social svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 768px) {
	.mmc-utility-bar-inner {
		flex-direction: column;
		gap: 8px;
		padding: 8px 16px;
	}
	.mmc-utility-contact {
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
		font-size: 12px;
	}
	.mmc-utility-social {
		gap: 12px;
	}
}
@media (max-width: 480px) {
	.mmc-utility-contact .mmc-utility-email span {
		display: none;
	}
	.mmc-utility-contact .mmc-utility-phone span {
		display: inline;
	}
}

/* ============================================================
   FULL-BLEED IMAGE HERO (.mmc-hero-image)
   Background photo + dark gradient overlay, white text, maroon-underline
   eyebrow. Per-page background via .mmc-hero-<slug>. Used on Home,
   Individuals, Government, Enterprise, Healthcare, Partners, About, Locations.
   ============================================================ */
.mmc-hero-image {
	position: relative;
	width: 100%;
	min-height: 540px;
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-text-default); /* fallback while image loads */
	overflow: hidden;
}
.mmc-hero-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.45) 50%,
		rgba(0, 0, 0, 0.25) 100%
	);
	z-index: 1;
}
.mmc-hero-image-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.mmc-hero-image .mmc-hero-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-on-dark);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding-bottom: 6px;
	margin-bottom: 24px;
	border-bottom: 2px solid var(--color-brand-maroon);
}
.mmc-hero-image h1 {
	font-family: 'Source Serif 4', serif;
	font-size: 56px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--color-text-on-dark);
	margin: 0 0 24px 0;
	max-width: 520px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.mmc-hero-image .mmc-hero-subhead {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	color: var(--color-text-on-dark);
	opacity: 0.92;
	margin: 0 0 32px 0;
	max-width: 440px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.mmc-hero-image .mmc-btn-text-link {
	background: transparent;
	color: var(--color-text-on-dark);
	border: 1.5px solid var(--color-text-on-dark);
	padding: 12px 24px;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease, color 0.2s ease;
}
.mmc-hero-image .mmc-btn-text-link:hover {
	background: var(--color-text-on-dark);
	color: var(--color-text-default);
}

@media (max-width: 1024px) {
	.mmc-hero-image {
		min-height: 460px;
		padding: 80px 0;
	}
	.mmc-hero-image h1 {
		font-size: 44px;
	}
}
@media (max-width: 768px) {
	.mmc-hero-image {
		min-height: 400px;
		padding: 64px 0;
	}
	.mmc-hero-image-inner {
		padding: 0 20px;
	}
	.mmc-hero-image h1 {
		font-size: 34px;
	}
	.mmc-hero-image .mmc-hero-subhead {
		font-size: 16px;
	}
}

/* Per-page background images */
.mmc-hero-home {
	background-image: url('/wp-content/uploads/2026/06/hero-customer.jpg');
	background-position: center top;
}
.mmc-hero-individuals {
	background-image: url('/wp-content/uploads/2026/06/family-hero-customer.jpg');
}
.mmc-hero-government {
	background-image: url('/wp-content/uploads/2026/06/government-transit-hero.jpg');
}
.mmc-hero-enterprise {
	background-image: url('/wp-content/uploads/2026/06/enterprise-hero.jpg');
}
.mmc-hero-healthcare {
	background-image: url('/wp-content/uploads/2026/06/healthcare-hero.jpg');
}
.mmc-hero-partners {
	background-image: url('/wp-content/uploads/2026/06/manufacturer-partners-hero.jpg');
}
.mmc-hero-about {
	background-image: url('/wp-content/uploads/2026/06/about-leadership.jpg');
}
.mmc-hero-locations {
	background-image: url('/wp-content/uploads/2026/06/locations-national.jpg');
}
.mmc-hero-careers {
	background-image: url('/wp-content/uploads/2026/06/careers-team.jpg');
}
.mmc-hero-stairlifts {
	background-image: url('/wp-content/uploads/2026/06/product-stairlifts.jpg');
}
.mmc-hero-ramps {
	background-image: url('/wp-content/uploads/2026/06/product-ramps.jpg');
}
.mmc-hero-home-elevators {
	background-image: url('/wp-content/uploads/2026/06/product-home-elevators.jpg');
}
.mmc-hero-power-mobility {
	background-image: url('/wp-content/uploads/2026/06/product-power-chairs.jpg');
}
.mmc-hero-vehicle-modifications {
	background-image: url('/wp-content/uploads/2026/06/product-vehicle-modifications.jpg');
}
.mmc-hero-complex-rehab {
	background-image: url('/wp-content/uploads/2026/06/product-complex-rehab.jpg');
}
.mmc-hero-products {
	background-image: url('/wp-content/uploads/2026/06/hero-customer.jpg');
}
/* Solutions category hero backgrounds (reuse product photography; VPL/mobility/
   home-access reuse the closest existing shot until dedicated photos are commissioned) */
.mmc-hero-elevators {
	background-image: url('/wp-content/uploads/2026/06/product-home-elevators.jpg');
}
.mmc-hero-vpl {
	background-image: url('/wp-content/uploads/2026/06/product-home-elevators.jpg');
}
.mmc-hero-mobility-medical {
	background-image: url('/wp-content/uploads/2026/06/product-power-chairs.jpg');
}
.mmc-hero-home-commercial {
	background-image: url('/wp-content/uploads/2026/06/product-ramps.jpg');
}

/* ============================================================
   MMC FOOTER (four-column maroon-deep, via generate_footer hook)
   ============================================================ */
.mmc-footer {
	margin-top: 0;
}
/* Maroon four-column band */
.mmc-footer-main {
	background: var(--color-brand-maroon-deep);
	color: var(--color-text-on-dark);
	padding: 64px 0;
}
/* Content wrapper, shared by the maroon band and the white legal bar */
.mmc-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
}
.mmc-footer-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
	margin-bottom: 0;
}
.mmc-footer-column {
	color: var(--color-text-on-dark);
}
.mmc-footer-heading {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-on-dark);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mmc-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.mmc-footer-list li {
	margin: 0 0 12px 0;
}
.mmc-footer-list a {
	color: var(--color-text-on-dark);
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	line-height: 1.4;
	transition: opacity 0.15s ease;
	opacity: 0.9;
}
.mmc-footer-list a:hover {
	opacity: 1;
	color: var(--color-text-on-dark);
	text-decoration: underline;
}
.mmc-footer-cta {
	display: inline-block;
	background: var(--color-text-on-dark);
	color: var(--color-brand-maroon) !important;
	padding: 8px 16px !important;
	border-radius: 4px;
	margin-top: 6px !important;
	font-weight: 600 !important;
	opacity: 1 !important;
	transition: background 0.2s ease !important;
}
.mmc-footer-cta:hover {
	background: var(--color-bg-warm-white) !important;
	color: var(--color-brand-maroon) !important;
	text-decoration: none !important;
}
/* White legal bar (logo + copyright + legal links), matches header chrome */
.mmc-footer-legal-bar {
	background: var(--color-bg-warm-white);
	border-top: 1px solid var(--color-border-soft);
	padding: 24px 0;
}
.mmc-footer-legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.mmc-footer-logo img {
	height: 72px;
	width: auto;
	display: block;
}
.mmc-footer-legal-text {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.mmc-footer-legal-text p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--color-text-muted);
}
.mmc-footer-legal-links {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.mmc-footer-legal-links li {
	margin: 0;
}
.mmc-footer-legal-links a {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}
.mmc-footer-legal-links a:hover {
	color: var(--color-brand-maroon);
	text-decoration: underline;
}
@media (max-width: 1024px) {
	.mmc-footer-columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}
@media (max-width: 640px) {
	.mmc-footer-main {
		padding: 48px 0;
	}
	.mmc-footer-inner {
		padding: 0 20px;
	}
	.mmc-footer-columns {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 0;
	}
	.mmc-footer-legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.mmc-footer-logo img {
		height: 56px;
	}
}

/* ============================================================
   FLUENT FORMS - MMC BRAND STYLING (Phase 6, /consultation)
   ============================================================ */
.frm-fluent-form {
	font-family: 'Inter', sans-serif;
}

.frm-fluent-form .ff-el-input--label label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-default);
	margin-bottom: 6px;
}

.frm-fluent-form input[type="text"],
.frm-fluent-form input[type="email"],
.frm-fluent-form input[type="tel"],
.frm-fluent-form input[type="number"],
.frm-fluent-form select,
.frm-fluent-form textarea {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--color-text-default);
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	padding: 10px 14px;
	width: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.frm-fluent-form input[type="text"]:focus,
.frm-fluent-form input[type="email"]:focus,
.frm-fluent-form input[type="tel"]:focus,
.frm-fluent-form input[type="number"]:focus,
.frm-fluent-form select:focus,
.frm-fluent-form textarea:focus {
	outline: none;
	border-color: var(--color-brand-maroon);
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.10);
}

.frm-fluent-form textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.5;
}

.frm-fluent-form .ff-el-form-help {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--color-text-muted);
	margin-top: 4px;
}

/* Submit button styling */
.frm-fluent-form .ff-btn-submit,
.frm-fluent-form button[type="submit"] {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 16px;
}

.frm-fluent-form .ff-btn-submit:hover,
.frm-fluent-form button[type="submit"]:hover {
	background: var(--color-brand-maroon-deep);
}

/* Error states */
.frm-fluent-form .ff-el-is-error input,
.frm-fluent-form .ff-el-is-error select,
.frm-fluent-form .ff-el-is-error textarea {
	border-color: #c0392b;
}

.frm-fluent-form .ff-el-error-message,
.frm-fluent-form .text-danger {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #c0392b;
	margin-top: 4px;
}

/* Success confirmation message */
.frm-fluent-form .ff-message-success {
	background: var(--color-bg-cream-tint);
	border: 1px solid var(--color-brand-maroon);
	border-radius: 6px;
	padding: 24px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-text-default);
}

/* Two-column container spacing */
.frm-fluent-form .ff-t-cell {
	padding: 0 8px;
}

.frm-fluent-form .ff-t-cell:first-child {
	padding-left: 0;
}

.frm-fluent-form .ff-t-cell:last-child {
	padding-right: 0;
}

/* Required field asterisk */
.frm-fluent-form .ff-el-input--label .text-danger {
	color: var(--color-brand-maroon);
	margin-left: 2px;
}

/* Spacing between fields */
.frm-fluent-form .ff_columns_total_2 .ff-el-form-control,
.frm-fluent-form .ff-el-form-control {
	margin-bottom: 20px;
}

/* Responsive: stack two-column fields on mobile */
@media (max-width: 640px) {
	.frm-fluent-form .ff_columns_total_2 .ff-t-cell {
		width: 100% !important;
		padding: 0 !important;
		margin-bottom: 16px;
	}
}

/* ============================================================
   MMC CONSULTATION FORM (custom, no plugin — Phase 6)
   ============================================================ */
.mmc-consultation-form {
	font-family: 'Inter', sans-serif;
	color: var(--color-text-default);
}

.mmc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.mmc-form-field {
	margin-bottom: 20px;
}

.mmc-form-field.conditional,
.mmc-form-row.conditional {
	display: none;
}

.mmc-form-field.conditional.is-visible {
	display: block;
}

.mmc-form-row.conditional.is-visible {
	display: grid;
}

.mmc-form-field label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-default);
	margin-bottom: 6px;
}

.mmc-form-field .required {
	color: var(--color-brand-maroon);
	margin-left: 2px;
}

.mmc-form-field input[type="text"],
.mmc-form-field input[type="email"],
.mmc-form-field input[type="tel"],
.mmc-form-field input[type="number"],
.mmc-form-field select,
.mmc-form-field textarea {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--color-text-default);
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	padding: 10px 14px;
	width: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
}

.mmc-form-field input:focus,
.mmc-form-field select:focus,
.mmc-form-field textarea:focus {
	outline: none;
	border-color: var(--color-brand-maroon);
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.10);
}

.mmc-form-field textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.5;
}

.mmc-form-field .help-text {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-top: 4px;
}

.mmc-form-submit {
	margin-top: 24px;
}

.mmc-form-submit-btn {
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 14px 32px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.mmc-form-submit-btn:hover {
	background: var(--color-brand-maroon-deep);
}

.mmc-form-feedback {
	padding: 24px;
	border-radius: 6px;
	margin-bottom: 24px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.mmc-form-success {
	background: var(--color-bg-cream-tint);
	border: 1px solid var(--color-brand-maroon);
	color: var(--color-text-default);
}

.mmc-form-error {
	background: #fef2f2;
	border: 1px solid #c0392b;
	color: #7f1d1d;
}

@media (max-width: 640px) {
	.mmc-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.mmc-form-row.conditional.is-visible {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   SPLIT HERO (photo background, text left, form card right)
   Variant of .mmc-hero-image for pages that get a lead form.
   Single-column .mmc-hero-image stays for form-less pages.
   ============================================================ */
.mmc-hero-image.mmc-hero-split .mmc-hero-image-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	min-height: 540px;
}

.mmc-hero-image.mmc-hero-split .mmc-hero-text {
	/* Left column - existing hero text */
	position: relative;
	z-index: 2;
}

.mmc-hero-image.mmc-hero-split .mmc-hero-form {
	/* Right column - form card */
	position: relative;
	z-index: 2;
	background: var(--color-bg-warm-white);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	padding: 32px 36px;
}

/* Form card header */
.mmc-hero-form-header {
	border-bottom: 1px solid var(--color-border-soft);
	padding-bottom: 16px;
	margin-bottom: 20px;
}

.mmc-hero-form-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-brand-maroon);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.mmc-hero-form-title {
	font-family: 'Source Serif 4', serif;
	font-size: 26px;
	font-weight: 600;
	color: var(--color-text-default);
	line-height: 1.2;
	margin: 0 0 6px 0;
}

.mmc-hero-form-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.4;
	margin: 0;
}

/* Form card body placeholder (Phase A only - removed in Phase B) */
.mmc-hero-form-placeholder {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--color-text-muted);
	font-style: italic;
	text-align: center;
	padding: 48px 16px;
	border: 2px dashed var(--color-border-soft);
	border-radius: 8px;
	margin: 16px 0;
}

/* Responsive - stack the columns on tablet and below */
@media (max-width: 1024px) {
	.mmc-hero-image.mmc-hero-split .mmc-hero-image-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.mmc-hero-image.mmc-hero-split .mmc-hero-form {
		max-width: 480px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.mmc-hero-image.mmc-hero-split {
		padding: 64px 0;
		min-height: auto;
	}

	.mmc-hero-image.mmc-hero-split .mmc-hero-form {
		padding: 24px 24px;
	}

	.mmc-hero-form-title {
		font-size: 22px;
	}
}

/* ============================================================
   HERO CONSULTATION FORM (compact two-step, in-hero card)
   ============================================================ */
.mmc-hero-form-fields {
	font-family: 'Inter', sans-serif;
}

.mmc-hero-form-step {
	display: none;
}

.mmc-hero-form-step.is-active {
	display: block;
}

.mmc-hero-form-field-group {
	margin-bottom: 16px;
}

.mmc-hero-form-group-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-default);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.mmc-hero-form-optional {
	font-size: 11px;
	font-weight: 500;
	color: var(--color-text-muted);
	text-transform: none;
	letter-spacing: normal;
}

/* Audience toggle - radio buttons styled as pill buttons */
.mmc-hero-audience-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}
/* 5 audience options: 2 + 2 + a full-width 5th, instead of a lopsided 4 + 1 wrap */
.mmc-hero-audience-option:last-child {
	grid-column: 1 / -1;
}

.mmc-hero-audience-option {
	cursor: pointer;
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text-default);
	text-align: center;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mmc-hero-audience-option input[type="radio"] {
	display: none;
}

.mmc-hero-audience-option:hover {
	border-color: var(--color-brand-maroon);
}

.mmc-hero-audience-option.is-selected {
	background: var(--color-brand-maroon);
	border-color: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
}

/* Interest chips */
.mmc-hero-interest-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-height: 200px;
	overflow-y: auto;
	padding-right: 4px;
}

.mmc-hero-chip {
	cursor: pointer;
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 16px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text-default);
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	flex: 0 0 auto;
}

.mmc-hero-chip input[type="checkbox"] {
	display: none;
}

.mmc-hero-chip:hover {
	border-color: var(--color-brand-maroon);
}

.mmc-hero-chip.is-selected {
	background: var(--color-brand-maroon);
	border-color: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
}

/* Continue button (Step 1 to Step 2) */
.mmc-hero-form-continue-btn {
	width: 100%;
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 12px 24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 8px;
}

.mmc-hero-form-continue-btn:hover {
	background: var(--color-brand-maroon-deep);
}

.mmc-hero-form-continue-btn:disabled {
	background: var(--color-border-soft);
	cursor: not-allowed;
}

/* Back button (Step 2 to Step 1) */
.mmc-hero-form-back-btn {
	background: transparent;
	color: var(--color-text-muted);
	border: none;
	padding: 0 0 12px 0;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none;
}

.mmc-hero-form-back-btn:hover {
	color: var(--color-brand-maroon);
}

/* Step 2 fields - compact */
.mmc-hero-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 12px;
}

.mmc-hero-form-field {
	margin-bottom: 12px;
}

.mmc-hero-form-field label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-default);
	margin-bottom: 4px;
}

.mmc-hero-form-field input[type="text"],
.mmc-hero-form-field input[type="email"],
.mmc-hero-form-field input[type="tel"],
.mmc-hero-form-field textarea {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--color-text-default);
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	padding: 8px 12px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mmc-hero-form-field input:focus,
.mmc-hero-form-field textarea:focus {
	outline: none;
	border-color: var(--color-brand-maroon);
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.10);
}

.mmc-hero-form-field textarea {
	min-height: 80px;
	resize: vertical;
	line-height: 1.4;
}

/* Submit button */
.mmc-hero-form-submit-btn {
	width: 100%;
	background: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
	border: none;
	border-radius: 6px;
	padding: 14px 24px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 8px;
}

.mmc-hero-form-submit-btn:hover {
	background: var(--color-brand-maroon-deep);
}

/* Disclaimer */
.mmc-hero-form-disclaimer {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: var(--color-text-muted);
	text-align: center;
	margin: 8px 0 0 0;
	font-style: italic;
}

/* Feedback messages */
.mmc-hero-form-feedback {
	padding: 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.4;
}

.mmc-hero-form-success {
	background: var(--color-bg-cream-tint);
	border: 1px solid var(--color-brand-maroon);
	color: var(--color-text-default);
}

.mmc-hero-form-error {
	background: #fef2f2;
	border: 1px solid #c0392b;
	color: #7f1d1d;
}

/* ============================================================
   STATE HUB / LOCATION PAGES (Georgia, Florida)
   ============================================================ */
.mmc-hero-georgia {
	background-image: url('/wp-content/uploads/2026/06/locations-georgia.jpg');
}
.mmc-hero-florida {
	background-image: url('/wp-content/uploads/2026/06/locations-florida.jpg');
}

/* Stats bar: 4 metrics in a row */
.mmc-statbar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.mmc-statbar-item {
	padding: 8px 12px;
}
.mmc-statbar-num {
	font-family: 'Source Serif 4', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--color-brand-maroon);
	line-height: 1.1;
	display: block;
}
.mmc-statbar-label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-muted);
	margin-top: 6px;
	display: block;
}

/* Trust badges row */
.mmc-trust-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.mmc-trust-badge {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-default);
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 24px;
	padding: 8px 18px;
}

/* City pill grid */
.mmc-city-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mmc-city-pill {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-brand-maroon);
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 18px;
	padding: 6px 14px;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mmc-city-pill:hover {
	background: var(--color-brand-maroon);
	border-color: var(--color-brand-maroon);
	color: var(--color-text-on-dark);
}
.mmc-city-note {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-style: italic;
	color: var(--color-text-muted);
	margin-top: 20px;
}

/* Standalone lead-form card (reuses the hero form card look outside the split hero) */
.mmc-loc-formcard {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
	padding: 32px 36px;
	max-width: 640px;
	margin: 0 auto;
}
.mmc-loc-formcard-head {
	margin-bottom: 20px;
	text-align: center;
}

/* Numbered sub-section list (stairlift types, etc.) */
.mmc-numbered-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.mmc-numbered-item {
	border-left: 2px solid var(--color-brand-maroon);
	padding-left: 18px;
}
.mmc-numbered-item .num {
	font-family: 'Source Serif 4', serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-brand-maroon);
}

@media (max-width: 768px) {
	.mmc-statbar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.mmc-numbered-grid { grid-template-columns: 1fr; }
	.mmc-loc-formcard { padding: 24px 22px; }
}

/* Four additional state-hub hero backgrounds (placeholder photos; dedicated
   state photography tracked in PHOTOGRAPHY-TODO) */
.mmc-hero-south-carolina {
	background-image: url('/wp-content/uploads/2026/06/locations-south-carolina.jpg');
}
.mmc-hero-north-carolina {
	background-image: url('/wp-content/uploads/2026/06/locations-north-carolina.jpg');
}
.mmc-hero-tennessee {
	background-image: url('/wp-content/uploads/2026/06/locations-tennessee.jpg');
}
.mmc-hero-alabama {
	background-image: url('/wp-content/uploads/2026/06/locations-alabama.jpg');
}

/* ============================================================
   [MMC_QUOTE_FORM] — dark "Get Your Free Quote" card (/consultation)
   Self-contained dark theme; uses brand maroon for the active tab + CTA.
   ============================================================ */
/* Section the card sits in: site-consistent light background (the dark card
   itself provides the contrast). Cream-tint frames the dark card cleanly. */
.mmc-quote-section {
	background: var(--color-bg-cream-tint);
	padding: 96px 24px;
}
/* Page headline/intro above the form (gives the page its H1 + context + phone). */
.mmc-quote-intro {
	max-width: 640px;
	margin: 0 auto 40px;
	text-align: center;
}
.mmc-quote-intro h1 {
	font-family: 'Source Serif 4', serif;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--color-text-default);
	margin: 0 0 16px;
}
.mmc-quote-intro p {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin: 0;
}
.mmc-quote-intro a {
	color: var(--color-brand-maroon);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.mmc-quote-intro a:hover { text-decoration: underline; }
.mmc-quote-card {
	background: #1a1a1d;
	border: 1px solid #2e2e33;
	border-radius: 14px;
	padding: 36px 32px;
	max-width: 560px;
	margin: 0 auto;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	font-family: 'Inter', sans-serif;
	color: #f4f4f5;
}
.mmc-quote-head { margin-bottom: 24px; }
.mmc-quote-title {
	font-family: 'Inter', sans-serif;
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #ffffff;
	margin: 0 0 8px;
	line-height: 1.1;
}
.mmc-quote-sub {
	font-size: 15px;
	color: #9a9aa2;
	margin: 0;
}
/* Mode toggle */
.mmc-quote-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	background: #232327;
	border-radius: 8px;
	padding: 5px;
	margin-bottom: 24px;
}
.mmc-quote-tab {
	appearance: none;
	border: none;
	cursor: pointer;
	border-radius: 6px;
	padding: 12px 10px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: transparent;
	color: #9a9aa2;
	transition: background 0.15s ease, color 0.15s ease;
}
.mmc-quote-tab.is-active {
	background: var(--color-brand-maroon);
	color: #ffffff;
}
/* Panes */
.mmc-quote-pane { display: none; }
.mmc-quote-pane.is-active { display: block; }
.mmc-quote-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.mmc-quote-field { margin-bottom: 18px; }
.mmc-quote-field label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #8e8e96;
	margin-bottom: 8px;
}
.mmc-quote-field input,
.mmc-quote-field select {
	width: 100%;
	box-sizing: border-box;
	background: #242428;
	border: 1px solid #34343a;
	border-radius: 7px;
	padding: 13px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #f4f4f5;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mmc-quote-field input::placeholder { color: #6b6b73; }
.mmc-quote-field select { cursor: pointer; }
.mmc-quote-field input:focus,
.mmc-quote-field select:focus {
	outline: none;
	border-color: var(--color-brand-maroon);
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.25);
}
/* Submit */
.mmc-quote-submit {
	width: 100%;
	appearance: none;
	border: none;
	cursor: pointer;
	margin-top: 6px;
	background: var(--color-brand-maroon);
	color: #ffffff;
	border-radius: 8px;
	padding: 16px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.15s ease;
}
.mmc-quote-submit:hover { background: var(--color-brand-maroon-deep); }
.mmc-quote-foot {
	font-size: 12px;
	color: #7a7a82;
	text-align: center;
	margin: 16px 0 0;
	line-height: 1.5;
}

/* ===== Clickwrap consent ===== */
/* Light forms (hero, careers) */
.mmc-form-consent { margin: 4px 0 18px; }
.mmc-form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-text-muted);
	cursor: pointer;
}
.mmc-form-consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--color-brand-maroon);
	cursor: pointer;
}
.mmc-form-consent a { color: var(--color-brand-maroon); text-decoration: underline; }
.mmc-form-consent a:hover { color: var(--color-brand-maroon-deep); }
.mmc-hero-form-consent { font-size: 12px; margin: 4px 0 14px; }
/* Dark quote form */
.mmc-quote-consent { margin: 2px 0 18px; }
.mmc-quote-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	line-height: 1.5;
	color: #9a9aa2;
	cursor: pointer;
}
.mmc-quote-consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--color-brand-maroon);
	cursor: pointer;
}
.mmc-quote-consent a { color: #e8b4b4; text-decoration: underline; }
.mmc-quote-consent a:hover { color: #ffffff; }

/* ===== Light variant of the quote form (split-hero lead forms) ===== */
.mmc-quote-card.mmc-quote-light {
	background: var(--color-bg-warm-white);
	border: 1px solid var(--color-border-soft);
	color: var(--color-text-default);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}
.mmc-quote-light .mmc-quote-title { color: var(--color-text-default); }
.mmc-quote-light .mmc-quote-sub { color: var(--color-text-muted); }
.mmc-quote-light .mmc-quote-toggle { background: var(--color-bg-cream-tint); }
.mmc-quote-light .mmc-quote-tab { color: var(--color-text-muted); }
.mmc-quote-light .mmc-quote-tab.is-active { background: var(--color-brand-maroon); color: #ffffff; }
.mmc-quote-light .mmc-quote-field label { color: var(--color-text-muted); }
.mmc-quote-light .mmc-quote-field input,
.mmc-quote-light .mmc-quote-field select {
	background: #ffffff;
	border: 1px solid var(--color-border-soft);
	color: var(--color-text-default);
}
.mmc-quote-light .mmc-quote-field input::placeholder { color: #9aa0ad; }
.mmc-quote-light .mmc-quote-field input:focus,
.mmc-quote-light .mmc-quote-field select:focus {
	border-color: var(--color-brand-maroon);
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.12);
}
.mmc-quote-light .mmc-quote-consent label { color: var(--color-text-muted); }
.mmc-quote-light .mmc-quote-consent a { color: var(--color-brand-maroon); }
.mmc-quote-light .mmc-quote-consent a:hover { color: var(--color-brand-maroon-deep); }
.mmc-quote-light .mmc-quote-foot { color: var(--color-text-muted); }

/* When the light quote form sits inside the split-hero card (.mmc-hero-form),
   flatten its card (the wrapper already provides one) and hide its own header
   (the wrapper's .mmc-hero-form-header is kept). No page re-paste needed. */
.mmc-hero-form .mmc-quote-card.mmc-quote-light {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	max-width: none;
}
.mmc-hero-form .mmc-quote-card.mmc-quote-light .mmc-quote-head { display: none; }

/* ===== Two-step flow (hero light form only; /consultation stays single-page) =====
   Without .mmc-quote-twostep, everything shows and Continue/Back are hidden. */
.mmc-quote-continue,
.mmc-quote-back { display: none; }
.mmc-quote-twostep .mmc-quote-continue { display: block; }
.mmc-quote-twostep[data-step="1"] .mmc-quote-stepfields-2,
.mmc-quote-twostep[data-step="1"] .mmc-quote-step2 { display: none; }
.mmc-quote-twostep[data-step="2"] .mmc-quote-stepfields-1,
.mmc-quote-twostep[data-step="2"] .mmc-quote-continue { display: none; }
.mmc-quote-twostep[data-step="2"] .mmc-quote-back { display: inline-block; }
/* Continue = primary action; Back = quiet text button */
.mmc-quote-continue {
	width: 100%;
	appearance: none;
	border: none;
	cursor: pointer;
	margin-top: 4px;
	background: var(--color-brand-maroon);
	color: #ffffff;
	border-radius: 8px;
	padding: 16px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.15s ease;
}
.mmc-quote-continue:hover { background: var(--color-brand-maroon-deep); }
.mmc-quote-back {
	appearance: none;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	margin: 0 0 14px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted);
}
.mmc-quote-back:hover { color: var(--color-brand-maroon); }
/* Feedback */
.mmc-quote-feedback {
	border-radius: 8px;
	padding: 16px 18px;
	font-size: 15px;
	margin-bottom: 20px;
}
.mmc-quote-success { background: rgba(58, 107, 71, 0.18); border: 1px solid #3a6b47; color: #cfe9d6; }
.mmc-quote-error { background: rgba(139, 0, 0, 0.18); border: 1px solid var(--color-brand-maroon); color: #f3c9c9; }
@media (max-width: 600px) {
	.mmc-quote-card { padding: 28px 20px; }
	.mmc-quote-row { grid-template-columns: 1fr; gap: 0; }
	.mmc-quote-intro h1 { font-size: 30px; }
	.mmc-quote-intro p { font-size: 16px; }
	.mmc-quote-section { padding: 56px 20px; }
}
