/* ==========================================================================
   Two Bros and a Hose — theme styles
   Mobile-first. No framework, no external fonts, no remote assets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens — colors sampled directly from the official logo artwork
   -------------------------------------------------------------------------- */
:root {
	--c-navy: #103a60; /* shield / outline navy */
	--c-navy-soft: #1c4a75; /* shirt navy */
	--c-navy-deep: #0c2b47; /* darkest linework */
	--c-water: #3a92c9; /* hose blue */
	--c-water-dark: #1b6ea5; /* text-safe derivative */
	--c-light-blue: #bfddee; /* wave ring / "Hose" lettering */
	--c-mist: #f0f7fb;
	--c-lime: #98c139; /* banner + glove lime */
	--c-lime-dark: #8abb33;
	--c-lime-deep: #4f6e19; /* text-safe on white */
	--c-orange: #b85307;
	--c-white: #ffffff;
	--c-ink: #17293a;
	--c-muted: #55697a;
	--c-line: #d5e3ec;

	--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, "Noto Sans", sans-serif;

	--container: 1180px;
	--gutter: 1.25rem;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(16, 58, 96, 0.08), 0 2px 6px rgba(16, 58, 96, 0.06);
	--shadow: 0 4px 14px rgba(16, 58, 96, 0.1), 0 12px 28px rgba(16, 58, 96, 0.08);
	--shadow-lg: 0 18px 48px rgba(16, 58, 96, 0.18);

	--header-h: 76px;
	--transition: 180ms ease;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 12px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--c-white);
	color: var(--c-ink);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	color: var(--c-navy);
	line-height: 1.18;
	letter-spacing: -0.015em;
	font-weight: 800;
}

h1 {
	font-size: clamp(2rem, 1.35rem + 2.7vw, 3.15rem);
}

h2 {
	font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.35rem);
}

h3 {
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
	font-weight: 700;
}

p {
	margin: 0 0 1rem;
}

a {
	color: var(--c-water-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover,
a:focus {
	color: var(--c-navy);
}

ul,
ol {
	padding-left: 1.2rem;
}

:focus-visible {
	outline: 3px solid var(--c-lime-deep);
	outline-offset: 2px;
	border-radius: 4px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: 0.75rem 1.25rem;
	background: var(--c-navy);
	color: var(--c-white);
	font-weight: 700;
	border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
	left: 0;
	color: var(--c-white);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.6rem;
	color: var(--c-water-dark);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.icon {
	flex: none;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 46px;
	padding: 0.7rem 1.35rem;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition),
		border-color var(--transition), transform var(--transition),
		box-shadow var(--transition);
}

.btn--primary {
	background: var(--c-lime);
	border-color: var(--c-lime);
	color: var(--c-navy);
	box-shadow: var(--shadow-sm);
}

.btn--primary:hover,
.btn--primary:focus {
	background: var(--c-lime-dark);
	border-color: var(--c-lime-dark);
	color: var(--c-navy);
	transform: translateY(-1px);
}

.btn--call {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: var(--c-white);
}

.btn--call:hover,
.btn--call:focus {
	background: var(--c-water-dark);
	border-color: var(--c-water-dark);
	color: var(--c-white);
}

.btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--c-white);
}

.btn--outline:hover,
.btn--outline:focus {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-navy);
}

.btn--outline-light {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--c-white);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
	background: var(--c-white);
	color: var(--c-navy);
}

.btn--ghost {
	background: var(--c-white);
	border-color: var(--c-line);
	color: var(--c-navy);
}

.btn--ghost:hover,
.btn--ghost:focus {
	border-color: var(--c-water);
	color: var(--c-water-dark);
}

.btn--sm {
	min-height: 42px;
	padding: 0.5rem 1rem;
	font-size: 0.9375rem;
}

.btn--lg {
	min-height: 54px;
	padding: 0.9rem 1.75rem;
	font-size: 1.0625rem;
}

.btn--block {
	width: 100%;
}

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--c-line);
	backdrop-filter: saturate(140%) blur(6px);
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
	padding-block: 0.5rem;
}

.brand {
	display: flex;
	align-items: center;
	max-width: var(--brand-max, 200px);
}

.brand__link {
	display: block;
	line-height: 0;
}

.brand img,
.brand .custom-logo {
	width: auto;
	max-width: var(--brand-max, 200px);
	max-height: 62px;
	object-fit: contain;
}

/*
 * The official logo is a tall badge rather than a wide wordmark, so the header
 * is given a little extra height to keep it legible without dominating.
 */
.brand--header img,
.brand--header .custom-logo {
	max-height: 62px;
}

.brand__wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1.02;
	text-decoration: none;
}

.brand__wordmark-top {
	color: var(--c-navy);
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.brand__wordmark-bottom {
	color: var(--c-water);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.brand--hero .brand__wordmark-top {
	font-size: 2rem;
}

.brand--hero .brand__wordmark-bottom {
	font-size: 1.35rem;
}

.brand--hero img,
.brand--hero .custom-logo {
	max-height: 210px;
	max-width: 100%;
}

.brand--footer .brand__wordmark-top {
	color: var(--c-white);
}

.brand--footer .brand__wordmark-bottom {
	color: var(--c-lime);
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 44px;
	min-width: 44px;
	padding: 0.5rem 0.8rem;
	background: var(--c-mist);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-pill);
	color: var(--c-navy);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
}

.nav-toggle:hover {
	border-color: var(--c-water);
}

.primary-nav {
	display: none;
	width: 100%;
}

.primary-nav.is-open {
	display: block;
	padding-block: 0.75rem 1rem;
	border-top: 1px solid var(--c-line);
}

/* Without JavaScript the menu is always visible rather than unreachable. */
body.no-js .primary-nav {
	display: block;
	width: 100%;
	padding-block: 0.5rem 0.75rem;
}

body.no-js .nav-toggle {
	display: none;
}

.nav-menu {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu a {
	display: block;
	padding: 0.7rem 0.5rem;
	border-radius: var(--radius-sm);
	color: var(--c-navy);
	font-weight: 600;
	text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .current-menu-item > a {
	background: var(--c-mist);
	color: var(--c-water-dark);
}

.nav-menu .sub-menu {
	margin: 0 0 0 0.75rem;
	padding: 0;
	list-style: none;
}

.primary-nav__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.85rem;
}

.menu-item--admin-hint a {
	color: var(--c-orange);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   5. Waves & sections
   -------------------------------------------------------------------------- */
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	pointer-events: none;
}

.wave svg {
	display: block;
	width: 100%;
	height: 52px;
}

.wave--bottom {
	bottom: -1px;
}

.wave--top {
	top: -1px;
	transform: scaleY(-1);
}

.section {
	padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem);
}

.section--services,
.section--segments {
	background: var(--c-white);
}

.section--gallery,
.section--quote {
	background: var(--c-mist);
}

.section--about {
	background: var(--c-white);
}

.section--area {
	background: linear-gradient(180deg, var(--c-white) 0%, var(--c-mist) 100%);
}

.section-heading {
	max-width: 46rem;
	margin-bottom: 2rem;
}

.section-title {
	margin-bottom: 0.6rem;
}

.section-intro {
	margin: 0;
	color: var(--c-muted);
	font-size: 1.0625rem;
}

.section-footnote {
	margin: 1.75rem 0 0;
	color: var(--c-muted);
	font-size: 0.9688rem;
}

.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(158deg, var(--c-navy-deep) 0%, var(--c-navy) 45%, var(--c-navy-soft) 78%, #2a7cb4 100%);
	color: var(--c-white);
	padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) clamp(4rem, 3rem + 5vw, 6.5rem);
}

.hero__spray {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 12% 18%,
			rgba(152, 193, 57, 0.22) 0,
			transparent 42%
		),
		radial-gradient(circle at 84% 8%, rgba(191, 221, 238, 0.2) 0, transparent 38%),
		radial-gradient(circle at 70% 78%, rgba(58, 146, 201, 0.35) 0, transparent 48%);
	opacity: 0.9;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	display: grid;
	gap: 2.25rem;
}

.hero__eyebrow {
	color: var(--c-light-blue);
}

.hero__eyebrow .icon {
	color: var(--c-lime);
}

.hero__title {
	margin-bottom: 0.75rem;
	color: var(--c-white);
	text-wrap: balance;
}

.hero__copy {
	max-width: 34rem;
	margin-bottom: 1.6rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero__points {
	display: grid;
	gap: 0.5rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.hero__points li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9688rem;
	font-weight: 600;
}

.hero__points .icon {
	color: var(--c-lime);
}

.hero__media {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero__logo-card {
	position: relative;
	z-index: 1;
	width: min(100%, 400px);
	padding: 1.75rem 1.5rem 1.4rem;
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.hero__logo-card .brand {
	justify-content: center;
	margin-inline: auto;
}

.hero__logo-caption {
	margin: 1rem 0 0;
	color: var(--c-muted);
	font-size: 0.9375rem;
	font-weight: 600;
}

.hero__bubbles {
	position: absolute;
	inset: -10% -6%;
	pointer-events: none;
}

.hero__bubbles span {
	position: absolute;
	display: block;
	border-radius: 50%;
	background: rgba(191, 221, 238, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.35);
	animation: twobros-float 9s ease-in-out infinite;
}

.hero__bubbles span:nth-child(1) {
	width: 18px;
	height: 18px;
	left: 4%;
	top: 18%;
	animation-delay: 0s;
}

.hero__bubbles span:nth-child(2) {
	width: 10px;
	height: 10px;
	right: 10%;
	top: 8%;
	animation-delay: 1.4s;
}

.hero__bubbles span:nth-child(3) {
	width: 26px;
	height: 26px;
	right: 2%;
	bottom: 22%;
	animation-delay: 2.6s;
}

.hero__bubbles span:nth-child(4) {
	width: 12px;
	height: 12px;
	left: 14%;
	bottom: 10%;
	animation-delay: 3.8s;
}

.hero__bubbles span:nth-child(5) {
	width: 8px;
	height: 8px;
	left: 46%;
	top: 2%;
	animation-delay: 5s;
}

@keyframes twobros-float {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.55;
	}
	50% {
		transform: translateY(-14px);
		opacity: 0.95;
	}
}

/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.trust {
	background: var(--c-light-blue);
	padding-block: 1.25rem;
}

.trust__list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.trust__item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--c-navy);
	font-weight: 700;
	font-size: 0.9688rem;
}

.trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: none;
	background: var(--c-white);
	border-radius: 50%;
	color: var(--c-water-dark);
}

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.service-grid {
	display: grid;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-card {
	position: relative;
	padding: 1.5rem 1.35rem 1.4rem;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition),
		border-color var(--transition);
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--c-lime), var(--c-water));
	border-radius: var(--radius) 0 0 var(--radius);
	opacity: 0;
	transition: opacity var(--transition);
}

.service-card:hover {
	transform: translateY(-3px);
	border-color: var(--c-light-blue);
	box-shadow: var(--shadow);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 0.9rem;
	background: var(--c-mist);
	border-radius: var(--radius-sm);
	color: var(--c-water-dark);
}

.service-card__title {
	margin-bottom: 0.4rem;
}

.service-card__text {
	margin: 0;
	color: var(--c-muted);
	font-size: 0.9688rem;
}

/* --------------------------------------------------------------------------
   9. Project placeholders
   -------------------------------------------------------------------------- */
.placeholder-grid {
	display: grid;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.placeholder-card {
	padding: 1.1rem;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	text-align: center;
}

.placeholder-card__frame {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	margin-bottom: 0.9rem;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(58, 146, 201, 0.05) 0 12px,
			rgba(58, 146, 201, 0.1) 12px 24px
		);
	border: 2px dashed var(--c-light-blue);
	border-radius: var(--radius-sm);
	color: var(--c-water);
}

.placeholder-card__badge {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	padding: 0.2rem 0.55rem;
	background: var(--c-navy);
	border-radius: var(--radius-pill);
	color: var(--c-white);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.placeholder-card__label {
	margin-bottom: 0.3rem;
	font-size: 1.0625rem;
}

.placeholder-card__note {
	margin: 0;
	color: var(--c-muted);
	font-size: 0.9063rem;
}

.editor-hint {
	margin-top: 1.5rem;
	padding: 1rem 1.15rem;
	background: #fff8ef;
	border: 1px dashed var(--c-orange);
	border-radius: var(--radius-sm);
	color: #6a3808;
	font-size: 0.9375rem;
}

.editor-hint p {
	margin: 0 0 0.5rem;
}

.editor-hint p:last-child {
	margin-bottom: 0;
}

.editor-hint__title {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.75rem;
}

.gallery-content {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.gallery-content > *:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. About
   -------------------------------------------------------------------------- */
.about__grid {
	display: grid;
	gap: 2rem;
}

.about__body p {
	color: var(--c-ink);
}

.about__values {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about__values li {
	padding: 1.15rem 1.1rem;
	background: var(--c-mist);
	border-radius: var(--radius);
	border: 1px solid var(--c-line);
}

.about__values h3 {
	margin-bottom: 0.3rem;
	font-size: 1.0313rem;
}

.about__values p {
	margin: 0;
	color: var(--c-muted);
	font-size: 0.9375rem;
}

.about__value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 0.6rem;
	background: var(--c-white);
	border-radius: 50%;
	color: var(--c-water-dark);
	box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   11. Segments
   -------------------------------------------------------------------------- */
.segments {
	display: grid;
	gap: 1.25rem;
}

.segment {
	padding: 1.6rem 1.4rem;
	border-radius: var(--radius);
	border: 1px solid var(--c-line);
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}

.segment--commercial {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: var(--c-white);
}

.segment--commercial .segment__title {
	color: var(--c-white);
}

.segment--commercial .segment__intro,
.segment--commercial .segment__list li {
	color: rgba(255, 255, 255, 0.9);
}

.segment--commercial .segment__icon {
	background: rgba(255, 255, 255, 0.12);
	color: var(--c-lime);
}

.segment--commercial .segment__list .icon {
	color: var(--c-lime);
}

.segment__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 0.85rem;
	background: var(--c-mist);
	border-radius: var(--radius-sm);
	color: var(--c-water-dark);
}

.segment__intro {
	color: var(--c-muted);
	font-size: 0.9688rem;
}

.segment__list {
	display: grid;
	gap: 0.55rem;
	margin: 1.1rem 0 0;
	padding: 0;
	list-style: none;
}

.segment__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9375rem;
	font-weight: 600;
}

.segment__list .icon {
	margin-top: 2px;
	color: var(--c-lime-deep);
}

/* --------------------------------------------------------------------------
   12. Service area
   -------------------------------------------------------------------------- */
.area__grid {
	display: grid;
	gap: 1.5rem;
}

.area__panel {
	position: relative;
	overflow: hidden;
	padding: 1.75rem 1.5rem;
	background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-water) 130%);
	border-radius: var(--radius-lg);
	color: var(--c-white);
	text-align: center;
}

.area__rings {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 168px;
	margin-bottom: 1rem;
}

.area__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(191, 221, 238, 0.45);
}

.area__ring--1 {
	width: 76px;
	height: 76px;
	background: rgba(152, 193, 57, 0.12);
}

.area__ring--2 {
	width: 120px;
	height: 120px;
}

.area__ring--3 {
	width: 166px;
	height: 166px;
	border-style: dashed;
}

.area__pin {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--c-lime);
	border-radius: 50%;
	color: var(--c-navy);
}

.area__panel-title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 800;
}

.area__summary {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
}

.area__county {
	margin-bottom: 1.35rem;
}

.area__county-name {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.6rem;
	color: var(--c-navy);
	font-size: 1.0625rem;
}

.area__county-name .icon {
	color: var(--c-water);
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chip {
	padding: 0.4rem 0.85rem;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-pill);
	color: var(--c-navy);
	font-size: 0.875rem;
	font-weight: 600;
}

.area__note {
	margin: 0;
	color: var(--c-muted);
	font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   13. Quote form
   -------------------------------------------------------------------------- */
.quote__grid {
	display: grid;
	gap: 2rem;
}

.quote__points {
	display: grid;
	gap: 0.5rem;
	margin: 1.25rem 0;
	padding: 0;
	list-style: none;
}

.quote__points li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.9688rem;
	font-weight: 600;
}

.quote__points .icon {
	color: var(--c-lime-deep);
}

.quote__call {
	margin: 0;
	font-weight: 700;
}

.quote__form-wrap {
	padding: 1.4rem 1.25rem;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.field {
	margin-bottom: 1.1rem;
}

.field__label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--c-navy);
	font-size: 0.9375rem;
	font-weight: 700;
}

.field__fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.field__req {
	margin-left: 0.2rem;
	color: var(--c-orange);
}

.field__optional {
	margin-left: 0.35rem;
	color: var(--c-muted);
	font-weight: 500;
	font-size: 0.8125rem;
}

.field__hint {
	margin: 0 0 0.4rem;
	color: var(--c-muted);
	font-size: 0.8438rem;
}

.field__control {
	width: 100%;
	min-height: 46px;
	padding: 0.6rem 0.8rem;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	color: var(--c-ink);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.field__control:focus {
	border-color: var(--c-water);
	box-shadow: 0 0 0 3px rgba(58, 146, 201, 0.16);
	outline: none;
}

textarea.field__control {
	min-height: 120px;
	resize: vertical;
}

select.field__control {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--c-navy) 50%),
		linear-gradient(135deg, var(--c-navy) 50%, transparent 50%);
	background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.field__radios {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.radio-option,
.checkbox-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.5rem 0.9rem;
	background: var(--c-mist);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-pill);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
}

.checkbox-option {
	align-items: flex-start;
	border-radius: var(--radius-sm);
	font-weight: 500;
	line-height: 1.45;
}

.radio-option:hover,
.checkbox-option:hover {
	border-color: var(--c-water);
}

.radio-option input,
.checkbox-option input {
	width: 20px;
	height: 20px;
	flex: none;
	accent-color: var(--c-water-dark);
}

.checkbox-option input {
	margin-top: 2px;
}

.field--error .field__control,
.field--error .checkbox-option {
	border-color: #b3261e;
	background: #fff6f5;
}

.field__error {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0.4rem 0 0;
	color: #8c1d18;
	font-size: 0.875rem;
	font-weight: 600;
}

.hp-field {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-privacy {
	margin: 0 0 1.15rem;
	color: var(--c-muted);
	font-size: 0.8438rem;
}

.form-message {
	margin-bottom: 1.25rem;
	padding: 1rem 1.1rem;
	border-radius: var(--radius-sm);
	border-left: 4px solid;
}

.form-message h3 {
	margin-bottom: 0.35rem;
	font-size: 1.0625rem;
}

.form-message p:last-child,
.form-message ul:last-child {
	margin-bottom: 0;
}

.form-message--success {
	background: #f1faec;
	border-color: var(--c-lime-deep);
}

.form-message--error {
	background: #fff4f3;
	border-color: #b3261e;
}

.form-message--error h3 {
	color: #8c1d18;
}

/* --------------------------------------------------------------------------
   14. Final CTA
   -------------------------------------------------------------------------- */
.cta {
	position: relative;
	padding-block: clamp(3.5rem, 2.5rem + 4vw, 5rem) clamp(2.75rem, 2rem + 3vw, 4rem);
	background: linear-gradient(155deg, var(--c-navy) 0%, var(--c-water-dark) 100%);
	color: var(--c-white);
	text-align: center;
}

.cta__inner {
	position: relative;
	max-width: 46rem;
}

.cta__title {
	color: var(--c-white);
	margin-bottom: 0.6rem;
}

.cta__copy {
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.92);
}

.cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.cta__note {
	margin: 1.15rem 0 0;
	color: var(--c-lime);
	font-weight: 700;
	font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--c-navy);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.9375rem;
}

.site-footer a {
	color: var(--c-light-blue);
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--c-lime);
	text-decoration: underline;
}

.site-footer__grid {
	display: grid;
	gap: 2rem;
	padding-block: 2.75rem 2rem;
}

.site-footer__heading {
	margin-bottom: 0.75rem;
	color: var(--c-white);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.site-footer__tagline {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer__credentials {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	background: rgba(152, 193, 57, 0.15);
	border-radius: var(--radius-pill);
	color: var(--c-lime);
	font-weight: 700;
	font-size: 0.875rem;
}

.site-footer__list,
.site-footer__menu {
	display: grid;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
}

.site-footer__list .icon {
	margin-top: 3px;
	color: var(--c-lime);
}

.site-footer__hours span {
	white-space: pre-line;
}

.site-footer__areas {
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.9;
}

.site-footer__note,
.site-footer__privacy {
	margin: 0.75rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.8438rem;
}

.social-links {
	display: flex;
	gap: 0.6rem;
	margin: 1.1rem 0 0;
	padding: 0;
	list-style: none;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--c-white);
}

.social-links a:hover,
.social-links a:focus {
	background: var(--c-lime);
	color: var(--c-navy);
}

.site-footer__bar {
	background: rgba(0, 0, 0, 0.22);
	font-size: 0.8438rem;
}

.site-footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	padding-block: 1rem;
}

.site-footer__bar p {
	margin: 0;
}

.site-footer__established {
	color: var(--c-lime);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   16. Mobile action bar
   -------------------------------------------------------------------------- */
.mobile-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: flex;
	gap: 1px;
	background: var(--c-line);
	border-top: 1px solid var(--c-line);
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-shadow: 0 -4px 16px rgba(16, 58, 96, 0.14);
}

.mobile-bar__btn {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 54px;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.mobile-bar__btn--call {
	background: var(--c-navy);
	color: var(--c-white);
}

.mobile-bar__btn--quote {
	background: var(--c-lime);
	color: var(--c-navy);
}

body {
	padding-bottom: 56px;
}

/* --------------------------------------------------------------------------
   17. Blog, pages, comments
   -------------------------------------------------------------------------- */
.page-hero {
	padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem);
	background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-water-dark) 120%);
	color: var(--c-white);
}

.page-hero__title {
	margin: 0;
	color: var(--c-white);
}

.page-hero__meta,
.page-hero__description {
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9375rem;
}

.content-layout {
	display: grid;
	gap: 2.5rem;
	padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}

.post-list {
	display: grid;
	gap: 1.5rem;
}

.post-card {
	display: grid;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--c-line);
}

.post-card__media img {
	width: 100%;
	border-radius: var(--radius);
}

.post-card__title {
	margin-bottom: 0.25rem;
	font-size: 1.4rem;
}

.post-card__title a {
	color: var(--c-navy);
	text-decoration: none;
}

.post-card__title a:hover,
.post-card__title a:focus {
	color: var(--c-water-dark);
	text-decoration: underline;
}

.post-card__meta {
	margin: 0 0 0.5rem;
	color: var(--c-muted);
	font-size: 0.875rem;
}

.post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	text-decoration: none;
}

.post-card__more:hover,
.post-card__more:focus {
	text-decoration: underline;
}

.single {
	padding-block: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.single__thumb {
	margin: 0 0 1.5rem;
}

.single__thumb img {
	width: 100%;
	border-radius: var(--radius);
}

.entry-content {
	max-width: 760px;
}

.entry-content > * {
	margin-bottom: 1.15rem;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.entry-content blockquote {
	margin: 1.5rem 0;
	padding: 0.75rem 1.25rem;
	border-left: 4px solid var(--c-lime);
	background: var(--c-mist);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content .alignwide {
	max-width: min(1180px, 100%);
}

.entry-content .alignfull {
	max-width: 100%;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 0.5rem 0.65rem;
	border: 1px solid var(--c-line);
	text-align: left;
}

.post-navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.5rem;
	border-top: 1px solid var(--c-line);
	font-weight: 600;
}

.pagination {
	margin-top: 2rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 0.5rem;
	margin-right: 0.35rem;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	color: var(--c-navy);
	font-weight: 700;
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: var(--c-white);
}

.widget {
	margin-bottom: 2rem;
	padding: 1.25rem;
	background: var(--c-mist);
	border-radius: var(--radius);
}

.widget-title {
	margin-bottom: 0.75rem;
	font-size: 1.0625rem;
}

.no-results {
	max-width: 44rem;
	padding: 2rem 0;
}

.no-results__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.search-form__label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 700;
	font-size: 0.9375rem;
}

.search-form__row {
	display: flex;
	gap: 0.5rem;
}

.search-form__input {
	flex: 1;
	min-height: 46px;
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
}

.comments-area {
	max-width: 760px;
	padding-block: 2rem;
	border-top: 1px solid var(--c-line);
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	padding-left: 1.25rem;
}

.comment-body {
	padding: 1rem 0;
	border-bottom: 1px solid var(--c-line);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
}

.comment-form .submit {
	min-height: 46px;
	padding: 0.7rem 1.35rem;
	background: var(--c-lime);
	border: 0;
	border-radius: var(--radius-pill);
	color: var(--c-navy);
	font-family: inherit;
	font-weight: 700;
	cursor: pointer;
}

.error-404 {
	padding-block: clamp(3rem, 2rem + 4vw, 5rem);
	background: var(--c-mist);
}

.error-404__inner {
	max-width: 44rem;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.error-404__actions .btn--outline {
	border-color: var(--c-navy);
	color: var(--c-navy);
}

.error-404__actions .btn--outline:hover,
.error-404__actions .btn--outline:focus {
	background: var(--c-navy);
	color: var(--c-white);
}

.error-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   18. Breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
	.trust__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-grid,
	.placeholder-grid,
	.about__values {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	:root {
		--gutter: 1.75rem;
	}

	.segments {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.quote__form-wrap {
		padding: 1.75rem 1.6rem;
	}

	.mobile-bar {
		display: none;
	}

	body {
		padding-bottom: 0;
	}

	.trust__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.post-card {
		grid-template-columns: 240px 1fr;
		align-items: start;
	}
}

@media (min-width: 992px) {
	:root {
		--header-h: 92px;
	}

	.brand--header img,
	.brand--header .custom-logo {
		max-height: 76px;
	}

	.site-header__inner {
		flex-wrap: nowrap;
	}

	.nav-toggle {
		display: none;
	}

	.primary-nav,
	body.no-js .primary-nav {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1.25rem;
		width: auto;
		padding-block: 0;
		border-top: 0;
	}

	.nav-menu {
		flex-direction: row;
		align-items: center;
		gap: 0.25rem;
	}

	.nav-menu > li {
		position: relative;
	}

	.nav-menu a {
		padding: 0.55rem 0.7rem;
	}

	.nav-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 20;
		min-width: 210px;
		margin: 0;
		padding: 0.4rem;
		background: var(--c-white);
		border: 1px solid var(--c-line);
		border-radius: var(--radius-sm);
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(4px);
		transition: opacity var(--transition), transform var(--transition),
			visibility var(--transition);
	}

	.nav-menu li:hover > .sub-menu,
	.nav-menu li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav__actions {
		margin-top: 0;
		flex-wrap: nowrap;
	}

	.hero__inner {
		grid-template-columns: 1.05fr 0.95fr;
		align-items: center;
		gap: 3rem;
	}

	.service-grid,
	.placeholder-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about__grid {
		grid-template-columns: 1.05fr 0.95fr;
		align-items: start;
		gap: 3rem;
	}

	.area__grid {
		grid-template-columns: 0.85fr 1.15fr;
		align-items: start;
		gap: 2.5rem;
	}

	.quote__grid {
		grid-template-columns: 0.85fr 1.15fr;
		align-items: start;
		gap: 3rem;
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
		gap: 2.5rem;
	}

	.content-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
	}

	.wave svg {
		height: 74px;
	}
}

@media (min-width: 1200px) {
	.section {
		padding-block: 5rem;
	}
}

/* --------------------------------------------------------------------------
   19. Reduced motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	.service-card:hover {
		transform: none;
	}
}

@media print {
	.site-header,
	.mobile-bar,
	.cta,
	.section--quote,
	.wave {
		display: none !important;
	}

	body {
		padding-bottom: 0;
		color: #000;
	}
}

/* --------------------------------------------------------------------------
   20. Sticky header state (added by navigation.js)
   -------------------------------------------------------------------------- */
.site-header.is-stuck {
	box-shadow: 0 2px 14px rgba(16, 58, 96, 0.12);
}
