/* =========================================================
   San Marcos Sprinkler Repair — Theme Stylesheet
   Hand-crafted clone of the original React/Tailwind design.
   ========================================================= */

/* ───────── Design tokens ───────── */
:root {
	--c-bg:           hsl(0 0% 98%);
	--c-fg:           hsl(220 15% 12%);
	--c-border:       hsl(220 13% 91%);
	--c-card:         hsl(0 0% 100%);
	--c-muted:        hsl(220 14% 96%);
	--c-muted-fg:     hsl(220 9% 46%);
	--c-primary:      hsl(138 60% 28%);
	--c-primary-fg:   #ffffff;
	--c-accent:       hsl(200 72% 42%);
	--c-sidebar:      hsl(138 30% 16%);
	--c-sidebar-fg:   hsl(0 0% 95%);
	--c-sidebar-border: hsl(138 30% 20%);
	--c-yellow:       #facc15;
	--c-green-300:    #86efac;
	--c-green-400:    #4ade80;
	--c-slate-900:    #0f172a;

	--font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--font-display: 'Montserrat', system-ui, sans-serif;

	--radius: .5rem;
	--radius-lg: .75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.25rem;

	--shadow-sm: 0 1px 2px rgb(0 0 0 / .05);
	--shadow:    0 1px 3px rgb(0 0 0 / .1), 0 1px 2px rgb(0 0 0 / .06);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);
}

/* ───────── Reset / base ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--c-fg);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { padding-left: 1.25rem; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 .5em;
}
p { margin: 0 0 1em; }

/* ───────── Layout container ───────── */
.sms-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 768px) { .sms-container { padding: 0 1.5rem; } }
.sms-max-3xl { max-width: 48rem; margin: 0 auto; }
.sms-max-4xl { max-width: 56rem; margin: 0 auto; }
.sms-max-5xl { max-width: 64rem; margin: 0 auto; }
.sms-max-6xl { max-width: 72rem; margin: 0 auto; }

/* ───────── Header ───────── */
.sms-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--c-border);
}
.sms-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 64px;
}
.sms-logo { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.125rem; }
.sms-logo svg { width: 24px; height: 24px; color: var(--c-primary); }
.sms-logo-text-mobile { display: inline; }
.sms-logo-text-desktop { display: none; }
@media (min-width: 640px) {
	.sms-logo-text-mobile { display: none; }
	.sms-logo-text-desktop { display: inline; }
}

.sms-nav { display: none; gap: 1.5rem; align-items: center; font-size: .875rem; font-weight: 500; }
@media (min-width: 900px) { .sms-nav { display: flex; } }
.sms-nav a { transition: color .15s; }
.sms-nav a:hover { color: var(--c-primary); }
.sms-nav-strong { font-weight: 600; }

/* Dropdown */
.sms-dropdown { position: relative; }
.sms-dropdown-trigger { cursor: pointer; padding: 1rem 0; }
.sms-dropdown-menu {
	position: absolute; top: 100%; left: 0;
	min-width: 16rem;
	display: none; flex-direction: column;
	background: var(--c-card);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: .5rem;
	z-index: 60;
}
.sms-dropdown:hover .sms-dropdown-menu,
.sms-dropdown:focus-within .sms-dropdown-menu,
.sms-dropdown.is-open .sms-dropdown-menu { display: flex; }
.sms-dropdown-menu a {
	padding: .375rem .5rem;
	border-radius: .375rem;
	font-size: .875rem;
}
.sms-dropdown-menu a:hover { background: var(--c-muted); }

.sms-header-cta {
	display: none;
	align-items: center; gap: 1rem;
}
@media (min-width: 900px) { .sms-header-cta { display: inline-flex; } }
.sms-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: .375rem; }
.sms-mobile-toggle:hover { background: var(--c-muted); }
@media (min-width: 900px) { .sms-mobile-toggle { display: none; } }

/* Mobile menu */
.sms-mobile-menu {
	display: none;
	border-top: 1px solid var(--c-border);
	background: var(--c-card);
	padding: 1rem;
	flex-direction: column;
	gap: 1rem;
}
.sms-mobile-menu.is-open { display: flex; }
.sms-mobile-menu a { font-size: 1.125rem; font-weight: 500; }

/* ───────── Buttons ───────── */
.sms-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .625rem 1rem;
	font-weight: 600; font-size: .875rem;
	border-radius: var(--radius);
	transition: background-color .15s, color .15s, border-color .15s, transform .05s;
	white-space: nowrap;
	border: 1px solid transparent;
}
.sms-btn:active { transform: translateY(1px); }
.sms-btn-primary  { background: var(--c-primary); color: #fff; }
.sms-btn-primary:hover  { background: hsl(138 60% 24%); }
.sms-btn-outline {
	background: transparent; color: var(--c-primary);
	border: 1px solid var(--c-primary);
}
.sms-btn-outline:hover { background: var(--c-primary); color: #fff; }
.sms-btn-white {
	background: #fff; color: var(--c-primary);
	box-shadow: var(--shadow-lg);
}
.sms-btn-white:hover { background: #f0fdf4; }
.sms-btn-ghost-white {
	border: 2px solid rgba(255,255,255,.7);
	color: #fff;
}
.sms-btn-ghost-white:hover { background: rgba(255,255,255,.1); }
.sms-btn-bold { font-weight: 700; }
.sms-btn-lg { padding: .875rem 1.5rem; font-size: 1rem; height: 56px; }
.sms-btn-xl { padding: 1rem 2rem; font-size: 1.125rem; height: 64px; border-radius: var(--radius-lg); }
.sms-btn-block { width: 100%; height: 48px; font-size: 1rem; }

/* ───────── Sections / spacing ───────── */
.sms-section { padding: 3.5rem 0; }
.sms-section-lg { padding: 4rem 0; }
@media (min-width: 768px) {
	.sms-section { padding: 4rem 0; }
	.sms-section-lg { padding: 5rem 0; }
}
.sms-section-muted { background: hsl(220 14% 96% / .3); }
.sms-section-primary { background: var(--c-primary); color: #fff; }

/* ───────── Hero ───────── */
.sms-hero {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
}
@media (min-width: 768px) { .sms-hero { padding: 7rem 0; } }
.sms-hero-home {
	min-height: 90vh;
	display: flex;
	align-items: center;
}
.sms-hero-bg {
	position: absolute; inset: 0;
}
.sms-hero-bg img {
	width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.sms-hero-bg::after {
	content: ""; position: absolute; inset: 0;
	background: rgba(23,23,23,.68);
}
.sms-hero-bg.sms-hero-bg-strong::after { background: rgba(23,23,23,.65); }
.sms-hero-bg.sms-hero-bg-gradient::before {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(to right, rgba(23,23,23,.45), transparent);
}
.sms-hero-content {
	position: relative;
	max-width: 48rem;
	color: #fff;
}
.sms-hero-content-wide { max-width: 50rem; }
.sms-eyebrow {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: .75rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .15em;
	color: var(--c-green-300);
	margin-bottom: 1.25rem;
}
.sms-eyebrow-primary { color: var(--c-primary); }
.sms-hero h1 {
	font-size: 2.25rem; font-weight: 700; color: #fff; margin: 0 0 1rem;
	line-height: 1.1;
}
@media (min-width: 768px) { .sms-hero h1 { font-size: 3rem; } }
.sms-hero-home h1 {
	font-size: 2.75rem; font-weight: 900; letter-spacing: -.025em;
	line-height: 1.05;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .sms-hero-home h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .sms-hero-home h1 { font-size: 4.5rem; } }
.sms-hero-sub {
	font-size: 1.25rem; color: rgba(255,255,255,.85);
	margin: 0 0 2rem; line-height: 1.5;
}
.sms-hero-sub-lg { font-size: 1.5rem; font-weight: 500; line-height: 1.3; margin-bottom: .75rem; }
.sms-hero-desc {
	color: rgba(255,255,255,.65); font-size: 1rem; max-width: 36rem;
	margin: 0 0 2.5rem;
}
.sms-hero-actions {
	display: flex; flex-direction: column; gap: 1rem;
	margin-bottom: 3rem;
}
@media (min-width: 640px) { .sms-hero-actions { flex-direction: row; } }
.sms-trust-row {
	display: flex; flex-wrap: wrap; gap: 1.25rem;
	font-size: .875rem; color: rgba(255,255,255,.75); font-weight: 500;
	margin-top: 2rem;
}
.sms-trust-row.sms-trust-row-tight { margin-top: 1.75rem; }
.sms-trust-item { display: inline-flex; align-items: center; gap: .375rem; }
.sms-trust-item svg { width: 16px; height: 16px; color: var(--c-green-400); }

/* ───────── Breadcrumb ───────── */
.sms-breadcrumb {
	border-bottom: 1px solid var(--c-border);
	background: hsl(220 14% 96% / .4);
}
.sms-breadcrumb-inner {
	display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
	padding: .75rem 0;
	font-size: .875rem; color: var(--c-muted-fg);
}
.sms-breadcrumb-inner a:hover { color: var(--c-primary); }
.sms-breadcrumb-inner svg { width: 16px; height: 16px; }
.sms-breadcrumb-current { color: var(--c-fg); font-weight: 500; }

/* ───────── Stats bar ───────── */
.sms-stats {
	background: var(--c-bg);
	border-bottom: 1px solid var(--c-border);
}
.sms-stats-grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .sms-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.sms-stat {
	padding: 1.5rem; text-align: center;
	border-left: 1px solid var(--c-border);
}
.sms-stat:first-child { border-left: 0; }
@media (min-width: 768px) {
	.sms-stat:nth-child(3) { border-left: 1px solid var(--c-border); }
}
.sms-stat-num { font-size: 1.875rem; font-weight: 900; color: var(--c-primary); font-family: var(--font-display); }
.sms-stat-lbl { font-size: .75rem; font-weight: 500; color: var(--c-muted-fg); margin-top: .25rem; text-transform: uppercase; letter-spacing: .05em; }

/* ───────── Section headings ───────── */
.sms-section-head { margin-bottom: 2.5rem; }
.sms-section-head h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .sms-section-head h2 { font-size: 2.25rem; } }
.sms-section-head-center { text-align: center; }
.sms-section-head p { color: var(--c-muted-fg); margin-top: .5rem; max-width: 36rem; }

/* ───────── Grids ───────── */
.sms-grid { display: grid; gap: .75rem; }
.sms-grid-2 { grid-template-columns: 1fr; gap: 1.25rem; }
.sms-grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }
.sms-grid-5 { grid-template-columns: 1fr; gap: .75rem; }
.sms-grid-split { grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 640px) {
	.sms-grid-2 { grid-template-columns: repeat(2, 1fr); }
	.sms-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.sms-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
	.sms-grid-3 { grid-template-columns: repeat(3, 1fr); }
	.sms-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.sms-grid-5 { grid-template-columns: repeat(5, 1fr); }
	.sms-grid-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* Prevent grid items from blowing past their column when they contain wide content. */
.sms-grid-split > * { min-width: 0; }

/* ───────── Service / generic cards ───────── */
.sms-card {
	background: var(--c-card);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	transition: border-color .15s, box-shadow .15s;
	display: flex; flex-direction: column;
	height: 100%;
}
.sms-card:hover { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.sms-card-icon {
	width: 40px; height: 40px; border-radius: .5rem;
	background: hsl(138 60% 28% / .1); color: var(--c-primary);
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: .75rem;
	transition: background .15s, color .15s;
}
.sms-card-icon svg { width: 24px; height: 24px; }
.sms-card:hover .sms-card-icon { background: var(--c-primary); color: #fff; }
.sms-card h3 { font-size: .875rem; font-weight: 700; margin: 0 0 .375rem; }
.sms-card p { font-size: .75rem; color: var(--c-muted-fg); line-height: 1.5; flex: 1; margin: 0; }
.sms-card-link {
	color: var(--c-primary); font-size: .75rem; font-weight: 600;
	margin-top: .75rem; display: inline-flex; align-items: center; gap: .25rem;
}

/* ───────── Problem list ───────── */
.sms-problem-grid {
	display: grid; grid-template-columns: 1fr; gap: .75rem;
}
@media (min-width: 640px) { .sms-problem-grid { grid-template-columns: repeat(2, 1fr); } }
.sms-problem {
	display: flex; align-items: center; gap: .75rem;
	font-size: .875rem; font-weight: 500;
}
.sms-problem-dot {
	width: 20px; height: 20px; border-radius: 9999px;
	background: hsl(138 60% 28% / .1);
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.sms-problem-dot svg { width: 14px; height: 14px; color: var(--c-primary); }

/* ───────── Photo with floating badge ───────── */
.sms-photo {
	position: relative; border-radius: var(--radius-2xl);
	overflow: hidden; box-shadow: var(--shadow-xl);
	aspect-ratio: 4 / 3;
}
.sms-photo img { width: 100%; height: 100%; object-fit: cover; }
.sms-photo-badge {
	position: absolute; bottom: 1rem; left: 1rem;
	background: #fff; border-radius: var(--radius-lg);
	padding: .75rem; box-shadow: var(--shadow-lg);
	display: flex; align-items: center; gap: .75rem;
}
.sms-photo-badge-icon {
	width: 40px; height: 40px; border-radius: .5rem;
	background: var(--c-primary); color: #fff;
	display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sms-photo-badge-icon svg { width: 20px; height: 20px; }
.sms-photo-badge p { margin: 0; line-height: 1.2; }
.sms-photo-badge .sms-pb-title { font-weight: 700; font-size: .875rem; color: var(--c-fg); }
.sms-photo-badge .sms-pb-sub   { font-size: .75rem; color: var(--c-muted-fg); }
.sms-photo-pill-top {
	position: absolute; top: 1rem; right: 1rem;
	background: var(--c-primary); color: #fff;
	border-radius: var(--radius-lg);
	padding: .5rem .75rem;
	font-size: .875rem; font-weight: 700;
	box-shadow: var(--shadow-lg);
}

/* ───────── Why-us / icon-text grid ───────── */
.sms-why-grid {
	display: grid; gap: 1.5rem; grid-template-columns: 1fr;
	max-width: 64rem; margin: 0 auto;
}
@media (min-width: 640px) { .sms-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sms-why-grid { grid-template-columns: repeat(3, 1fr); } }
.sms-why {
	display: flex; gap: 1.25rem;
	padding: 1.25rem;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	background: var(--c-card);
	transition: border-color .15s, box-shadow .15s;
}
.sms-why:hover { border-color: hsl(138 60% 28% / .3); box-shadow: var(--shadow-sm); }
.sms-why-icon { flex-shrink: 0; margin-top: .125rem; color: var(--c-primary); }
.sms-why-icon svg { width: 28px; height: 28px; }
.sms-why h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; }
.sms-why p { font-size: .875rem; color: var(--c-muted-fg); line-height: 1.5; margin: 0; }

/* ───────── Water-conservation banner ───────── */
.sms-banner {
	position: relative; overflow: hidden;
	padding: 4rem 0;
	color: #fff;
}
@media (min-width: 768px) { .sms-banner { padding: 5rem 0; } }
.sms-banner-bg {
	position: absolute; inset: 0;
}
.sms-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.sms-banner-bg::after {
	content: ""; position: absolute; inset: 0;
	background: hsl(138 60% 28% / .9);
}
.sms-banner-content { position: relative; max-width: 48rem; margin: 0 auto; text-align: center; }
.sms-banner h2 { font-size: 1.875rem; color: #fff; margin: 0 0 1.25rem; }
@media (min-width: 768px) { .sms-banner h2 { font-size: 2.25rem; } }
.sms-banner p { color: rgba(255,255,255,.8); font-size: 1.125rem; line-height: 1.6; }
.sms-banner-note {
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--radius-lg);
	padding: 1rem; margin: 2rem auto 0;
	font-size: .875rem; color: rgba(255,255,255,.7); text-align: left;
	max-width: 36rem;
}
.sms-banner-note strong { color: #fff; }

/* ───────── Reviews ───────── */
.sms-reviews-head {
	display: flex; flex-direction: column; gap: 1rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.sms-reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.sms-stars { display: inline-flex; gap: 1px; }
.sms-stars svg { width: 16px; height: 16px; fill: var(--c-yellow); color: var(--c-yellow); }
.sms-stars-lg svg { width: 20px; height: 20px; }
.sms-rating {
	display: inline-flex; align-items: center; gap: .5rem;
}
.sms-rating-num { font-weight: 700; font-size: 1.125rem; }
.sms-rating-lbl { font-size: .875rem; color: var(--c-muted-fg); }

.sms-review-grid {
	display: grid; gap: 1.25rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sms-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sms-review-grid { grid-template-columns: repeat(3, 1fr); } }
.sms-review {
	background: var(--c-card);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex; flex-direction: column;
}
.sms-review-text { font-size: .875rem; color: var(--c-fg); line-height: 1.6; flex: 1; margin: .75rem 0 0; }
.sms-review-text-muted { color: var(--c-muted-fg); margin-bottom: 1rem; }
.sms-review-meta {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 1rem; margin-top: 1rem;
	border-top: 1px solid var(--c-border);
}
.sms-review-meta-name { font-weight: 600; font-size: .875rem; }
.sms-review-meta-sub  { font-size: .75rem; color: var(--c-muted-fg); }

/* ───────── Service areas list ───────── */
.sms-areas-grid {
	display: grid; gap: .75rem; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sms-area-item {
	display: flex; align-items: center; gap: .5rem;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: .75rem 1rem;
	font-size: .875rem; font-weight: 500;
	transition: border-color .15s, background-color .15s;
}
.sms-area-item:hover { border-color: var(--c-primary); background: hsl(138 60% 28% / .05); }
.sms-area-item svg { width: 16px; height: 16px; color: var(--c-primary); flex-shrink: 0; }

/* Map-style decorative photo */
.sms-map-photo {
	position: relative; border-radius: var(--radius-2xl);
	overflow: hidden; aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-xl);
	background: hsl(138 60% 28% / .05);
	border: 1px solid var(--c-border);
}
.sms-map-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.sms-map-photo::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to top, hsl(138 60% 28% / .6), transparent);
}
.sms-map-photo .sms-map-caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 1.5rem; z-index: 1;
	color: #fff;
}
.sms-map-caption p { margin: 0; }
.sms-map-caption .sms-map-title { font-weight: 700; font-size: 1.25rem; }
.sms-map-caption .sms-map-sub   { font-size: .875rem; color: rgba(255,255,255,.8); }

/* ───────── FAQ accordion ───────── */
.sms-faq { display: flex; flex-direction: column; gap: .75rem; }
.sms-faq-item {
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	background: var(--c-card);
	padding: 0 1.25rem;
}
.sms-faq-q {
	display: flex; width: 100%; align-items: center; justify-content: space-between;
	padding: 1rem 0;
	font-weight: 600; font-size: 1rem; text-align: left;
}
.sms-faq-q svg {
	width: 16px; height: 16px;
	transition: transform .2s;
	flex-shrink: 0; margin-left: 1rem;
}
.sms-faq-item.is-open .sms-faq-q svg { transform: rotate(180deg); }
.sms-faq-a {
	display: none;
	color: var(--c-muted-fg);
	padding: 0 0 1rem;
	line-height: 1.6;
}
.sms-faq-item.is-open .sms-faq-a { display: block; }

/* ───────── Contact CTA section ───────── */
.sms-contact-cta { padding: 4rem 0; background: var(--c-primary); color: #fff; }
.sms-contact-cta .sms-contact-grid {
	display: grid; gap: 2.5rem;
	grid-template-columns: 1fr;
	align-items: flex-start;
}
@media (min-width: 768px) { .sms-contact-cta .sms-contact-grid { grid-template-columns: 1fr 1fr; } }
.sms-contact-label {
	color: rgba(255,255,255,.5); font-size: .75rem;
	text-transform: uppercase; letter-spacing: .15em;
	margin: 0 0 .5rem;
}
.sms-contact-phone {
	font-size: 2.25rem; font-weight: 900;
	font-family: var(--font-display); color: #fff;
	letter-spacing: -.025em;
}
.sms-contact-phone:hover { text-decoration: underline; }
.sms-hours-list { list-style: none; padding: 0; margin: 0; color: rgba(255,255,255,.8); }
.sms-hours-list li { margin-bottom: .25rem; }
.sms-contact-card {
	background: #fff; border-radius: var(--radius-2xl);
	padding: 1.75rem; box-shadow: var(--shadow-2xl);
	color: var(--c-fg);
}
.sms-contact-card-head { font-weight: 700; font-size: 1.125rem; margin: 0 0 .25rem; }
.sms-contact-card-sub  { color: var(--c-muted-fg); font-size: .875rem; margin: 0 0 1.25rem; }

/* Pill / glass info-box used on contact CTA */
.sms-info-pill {
	display: flex; align-items: center; gap: .5rem;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--radius-lg);
	padding: 1rem;
}
.sms-info-pill svg { color: var(--c-green-300); flex-shrink: 0; width: 20px; height: 20px; }
.sms-info-pill p { font-size: .875rem; color: rgba(255,255,255,.8); margin: 0; }

/* Floating quote box on Home CTA */
.sms-quote-box {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
}
.sms-quote-box .sms-stars { margin-bottom: .75rem; }
.sms-quote-box p { color: rgba(255,255,255,.8); font-size: .875rem; font-style: italic; margin: 0; }
.sms-quote-box .sms-quote-author { color: rgba(255,255,255,.5); font-size: .75rem; margin-top: .5rem; }

/* ───────── Sections list (service page) ───────── */
.sms-sections { max-width: 56rem; margin: 0 auto; padding: 3rem 0; }
.sms-sections > div + div { margin-top: 3rem; }
.sms-sections h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-fg); margin: 0 0 1rem; }
@media (min-width: 768px) { .sms-sections h2 { font-size: 1.875rem; } }
.sms-sections p { color: var(--c-muted-fg); line-height: 1.6; }
.sms-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.sms-check-list li {
	display: flex; align-items: flex-start; gap: .75rem;
	color: var(--c-muted-fg);
}
.sms-check-list li svg { width: 20px; height: 20px; color: var(--c-primary); margin-top: .125rem; flex-shrink: 0; }

/* ───────── Related services / service links ───────── */
.sms-service-links {
	display: grid; grid-template-columns: 1fr; gap: .75rem;
}
@media (min-width: 640px) { .sms-service-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .sms-service-links { grid-template-columns: repeat(3, 1fr); } }
.sms-service-link {
	border: 1px solid var(--c-border);
	background: var(--c-card);
	border-radius: var(--radius-lg);
	padding: 1rem;
	display: flex; align-items: center; justify-content: space-between;
	transition: border-color .15s, box-shadow .15s;
}
.sms-service-link:hover { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.sms-service-link-left { display: flex; align-items: center; gap: .5rem; }
.sms-service-link-left svg { width: 16px; height: 16px; color: var(--c-primary); flex-shrink: 0; }
.sms-service-link-left span { font-weight: 500; font-size: .875rem; }
.sms-service-link-right { width: 16px; height: 16px; color: var(--c-primary); flex-shrink: 0; }

/* Pill row (landmarks) */
.sms-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.sms-pill {
	background: hsl(138 60% 28% / .1);
	color: var(--c-primary);
	font-size: .75rem; font-weight: 500;
	padding: .25rem .75rem;
	border-radius: 9999px;
}
.sms-landmark-box {
	padding: 1rem;
	background: hsl(220 14% 96% / .4);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
}
.sms-landmark-box p { font-size: .875rem; font-weight: 600; color: var(--c-fg); margin: 0 0 .75rem; display: flex; align-items: center; gap: .5rem; }
.sms-landmark-box p svg { color: var(--c-primary); width: 16px; height: 16px; }

/* Common-issues cards (location pages) */
.sms-issue {
	display: flex; align-items: flex-start; gap: .75rem;
	background: var(--c-card);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: .75rem;
}
.sms-issue svg { width: 20px; height: 20px; color: var(--c-primary); margin-top: .125rem; flex-shrink: 0; }
.sms-issue span { font-size: .875rem; color: var(--c-fg); font-weight: 500; }
.sms-issue-list { display: flex; flex-direction: column; gap: .75rem; }

/* ───────── Forms ───────── */
.sms-form { display: flex; flex-direction: column; gap: 1rem; }
.sms-form-row {
	display: grid; gap: 1rem; grid-template-columns: 1fr 1fr;
}
.sms-form label {
	display: block; font-size: .875rem; font-weight: 500; color: var(--c-fg); margin-bottom: .375rem;
}
.sms-form input,
.sms-form select,
.sms-form textarea {
	width: 100%; padding: .625rem .75rem;
	background: #fff; color: var(--c-fg);
	border: 1px solid var(--c-border);
	border-radius: var(--radius); font-size: .9375rem;
	font-family: inherit;
	transition: border-color .15s, box-shadow .15s;
}
.sms-form input:focus,
.sms-form select:focus,
.sms-form textarea:focus {
	outline: none; border-color: var(--c-primary);
	box-shadow: 0 0 0 3px hsl(138 60% 28% / .15);
}
.sms-form textarea { resize: vertical; min-height: 88px; }
.sms-form-error { color: #dc2626; font-size: .8125rem; margin-top: .25rem; }
.sms-form-success {
	text-align: center; padding: 2rem 1rem;
}
.sms-form-success svg { width: 48px; height: 48px; color: var(--c-primary); margin: 0 auto 1rem; }
.sms-form-success h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
.sms-form-success p { color: var(--c-muted-fg); margin: 0 0 .5rem; }

/* ───────── Blog ───────── */
.sms-blog-header {
	background: var(--c-slate-900);
	color: #fff;
	padding: 3.5rem 0;
}
.sms-blog-header .sms-date {
	display: inline-flex; align-items: center; gap: .5rem;
	color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 1rem;
}
.sms-blog-header svg { width: 16px; height: 16px; }
.sms-blog-header h1 {
	font-size: 1.875rem; line-height: 1.15; color: #fff; margin: 0;
}
@media (min-width: 768px) { .sms-blog-header h1 { font-size: 2.25rem; } }

.sms-article {
	max-width: 48rem; margin: 0 auto;
	padding: 3rem 0;
	color: var(--c-muted-fg);
	line-height: 1.7;
}
.sms-article h2 { font-size: 1.5rem; color: var(--c-fg); margin: 2rem 0 1rem; }
.sms-article h3 { font-size: 1.25rem; color: var(--c-fg); margin: 1.75rem 0 .75rem; }
.sms-article p, .sms-article li { color: var(--c-muted-fg); }
.sms-article a { color: var(--c-primary); }
.sms-article a:hover { text-decoration: underline; }
.sms-article ul, .sms-article ol { padding-left: 1.25rem; margin: 1rem 0; }
.sms-article ul li, .sms-article ol li { margin-bottom: .5rem; }
.sms-article strong { color: var(--c-fg); }
.sms-article blockquote {
	border-left: 4px solid var(--c-primary);
	padding-left: 1rem;
	margin: 1.5rem 0;
	color: var(--c-fg); font-style: italic;
}

.sms-related-services {
	margin-top: 3rem;
	padding: 1.5rem;
	background: hsl(138 60% 28% / .05);
	border: 1px solid hsl(138 60% 28% / .2);
	border-radius: var(--radius-lg);
}
.sms-related-services h3 { font-weight: 700; font-size: 1.25rem; margin: 0 0 .75rem; color: var(--c-fg); }
.sms-related-services p { color: var(--c-muted-fg); margin: 0 0 1rem; }
.sms-related-services .sms-btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.sms-related-services .sms-btn { font-size: .875rem; padding: .5rem 1rem; height: auto; }

.sms-other-posts-grid {
	display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sms-other-posts-grid { grid-template-columns: repeat(3, 1fr); } }
.sms-other-post {
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	background: var(--c-card);
	padding: 1.25rem;
	transition: border-color .15s, box-shadow .15s;
	display: flex; flex-direction: column;
	height: 100%;
}
.sms-other-post:hover { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.sms-other-post .sms-date { font-size: .75rem; color: var(--c-muted-fg); margin-bottom: .5rem; }
.sms-other-post h3 { font-size: .875rem; font-weight: 600; line-height: 1.4; margin: 0 0 .75rem; flex: 1; }
.sms-other-post .sms-read-more { color: var(--c-primary); font-size: .875rem; font-weight: 500; display: inline-flex; align-items: center; gap: .25rem; }

/* Blog index cards */
.sms-blog-grid {
	display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sms-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sms-blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ───────── Footer ───────── */
.sms-footer {
	border-top: 1px solid var(--c-border);
	background: var(--c-sidebar);
	color: var(--c-sidebar-fg);
	padding: 3rem 0;
}
.sms-footer-grid {
	display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sms-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.sms-footer h3 { font-weight: 600; font-size: 1.125rem; color: #fff; margin: 0 0 1rem; }
.sms-footer h4 { font-weight: 500; color: #fff; margin: 0 0 .5rem; }
.sms-footer ul { list-style: none; padding: 0; margin: 0; }
.sms-footer li { font-size: .875rem; color: hsl(0 0% 95% / .8); margin-bottom: .5rem; }
.sms-footer a:hover { color: var(--c-accent); }
.sms-footer-brand { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.25rem; color: #fff; }
.sms-footer-brand svg { width: 24px; height: 24px; color: var(--c-accent); }
.sms-footer-desc { font-size: .875rem; color: hsl(0 0% 95% / .8); margin: 1rem 0; }
.sms-footer-phone-link { color: var(--c-accent); font-weight: 700; }
.sms-footer-phone-link:hover { text-decoration: underline; color: var(--c-accent); }
.sms-footer-bottom {
	margin-top: 3rem; padding-top: 2rem;
	border-top: 1px solid var(--c-sidebar-border);
	display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1rem;
	font-size: .875rem; color: hsl(0 0% 95% / .6);
}
@media (min-width: 768px) { .sms-footer-bottom { flex-direction: row; } }
.sms-footer-bottom-links { display: flex; gap: 1rem; }

/* ───────── Sticky mobile call bar ───────── */
.sms-callbar {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
	box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}
@media (min-width: 900px) { .sms-callbar { display: none; } }
.sms-callbar-row { background: var(--c-primary); display: grid; grid-template-columns: 1fr 1fr; }
.sms-callbar a {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: .125rem; padding: .75rem; color: #fff;
	transition: background-color .15s;
}
.sms-callbar a:first-child { border-right: 1px solid rgba(255,255,255,.2); }
.sms-callbar a:active { background: hsl(138 60% 28% / .8); }
.sms-callbar svg { width: 20px; height: 20px; }
.sms-callbar svg.sms-fill { fill: #fff; }
.sms-callbar-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.sms-callbar-num { font-size: .875rem; font-weight: 800; line-height: 1; }
.sms-callbar-foot {
	background: hsl(138 60% 28% / .95);
	color: rgba(255,255,255,.7);
	font-size: .625rem; text-align: center;
	padding: .25rem 0 calc(.25rem + env(safe-area-inset-bottom, 0px));
}
.sms-callbar-spacer { height: 76px; }
@media (min-width: 900px) { .sms-callbar-spacer { display: none; } }

/* ───────── Misc utilities ───────── */
.sms-flex-row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
.sms-flex-col { display: flex; flex-direction: column; gap: 1rem; }
.sms-text-center { text-align: center; }
.sms-mt-8 { margin-top: 2rem; }
.sms-mt-12 { margin-top: 3rem; }
.sms-mb-8 { margin-bottom: 2rem; }
.sms-mb-10 { margin-bottom: 2.5rem; }
.sms-screenreader {
	border: 0; clip: rect(0,0,0,0); height: 1px; width: 1px;
	margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
@media (min-width: 768px) {
	.sms-hide-md { display: none; }
}
.sms-show-md { display: none; }
@media (min-width: 768px) { .sms-show-md { display: inline-flex; } }
