/* ==========================================================================
   BUILDWICK CONSTRUCTION — Design System
   --------------------------------------------------------------------------
   Visual direction: engineering drawing. Blueprint hairline grids on dark
   fields, gold measurement ticks as section markers, a structural 12-column
   rhythm. The palette commits to the brand's navy + safety gold; neutrals are
   biased cool so they sit with the navy rather than reading as default grey.

   Type: Barlow Condensed (display) — an industrial grotesk drawn from
   machinery and signage lettering — over Barlow (body). One superfamily keeps
   the request count low, which keeps Core Web Vitals fast.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
	/* Brand */
	--navy-900: #061527;
	--navy-800: #0b1f3a;
	--navy-700: #12304f;
	--navy-600: #1c4269;
	--gold-600: #c07f00;
	--gold-500: #f0a500;
	--gold-400: #ffbe33;

	/* Cool-biased neutrals, chosen to sit beside the navy */
	--paper:    #f6f8fa;
	--paper-2:  #e9eef3;
	--paper-3:  #d7e0e8;
	--ink:      #101820;
	--ink-2:    #33414f;
	--ink-muted:#5a6b7b;
	--white:    #ffffff;

	--ok:   #1b7f4d;
	--err:  #b3261e;

	/* Type */
	--font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
	--font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-hero:  clamp(2.4rem, 5.2vw, 4.25rem);
	--fs-h2:    clamp(1.9rem, 3.6vw, 3rem);
	--fs-h3:    clamp(1.15rem, 1.6vw, 1.4rem);
	--fs-lede:  clamp(1.05rem, 1.4vw, 1.2rem);
	--fs-body:  1rem;
	--fs-small: 0.875rem;
	--fs-tiny:  0.78rem;

	/* Space */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 3rem;
	--sp-8: 4rem;
	--sp-9: 6rem;

	--container: 1200px;
	--radius: 4px;
	--radius-lg: 6px;

	--shadow-sm: 0 1px 2px rgba(6, 21, 39, 0.08);
	--shadow-md: 0 6px 20px rgba(6, 21, 39, 0.10);
	--shadow-lg: 0 18px 48px rgba(6, 21, 39, 0.18);

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--ink-2);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
	color: var(--navy-800);
	margin: 0 0 var(--sp-4);
	text-wrap: balance;
	letter-spacing: 0.005em;
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-600); }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
	outline: 3px solid var(--gold-500);
	outline-offset: 2px;
	border-radius: 2px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--gold-500);
	color: var(--navy-900);
	padding: var(--sp-3) var(--sp-5);
	font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, 840px); }

/* --------------------------------------------------------------------------
   3. SHARED PIECES
   -------------------------------------------------------------------------- */

/* Eyebrow: the gold "measurement tick" that marks each section. */
.eyebrow {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	font-family: var(--font-display);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-600);
	margin: 0 0 var(--sp-4);
}
.eyebrow--light { color: var(--gold-400); }
.eyebrow__tick {
	width: 34px;
	height: 2px;
	background: currentColor;
	flex: none;
	position: relative;
}
.eyebrow__tick::before,
.eyebrow__tick::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 8px;
	background: currentColor;
	top: -3px;
}
.eyebrow__tick::before { left: 0; }
.eyebrow__tick::after { right: 0; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: var(--paper); }
.section--dark { background: var(--navy-800); position: relative; overflow: hidden; }
.section--contact { background: var(--paper-2); }

.section-head { max-width: 68ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-title { font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.section-title--light { color: var(--white); }

.section-lede {
	font-size: var(--fs-lede);
	color: var(--ink-muted);
	max-width: 62ch;
}
.section-head--center .section-lede { margin-inline: auto; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	padding: 0.8rem 1.6rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
		border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 2rem; font-size: 1.15rem; }
.btn--block { width: 100%; }

.btn--gold {
	background: var(--gold-500);
	color: var(--navy-900);
	border-color: var(--gold-500);
	box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
	background: var(--gold-400);
	border-color: var(--gold-400);
	color: var(--navy-900);
	box-shadow: var(--shadow-md);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(3px);
}
.btn--ghost:hover { background: var(--white); color: var(--navy-800); border-color: var(--white); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline-light:hover { background: var(--white); color: var(--navy-800); }

.btn--navy { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn--navy:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

/* Blueprint hairline grid used on dark fields */
.hero__grid-overlay,
.gov__grid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 78%);
}

/* --------------------------------------------------------------------------
   4. TOPBAR + HEADER
   -------------------------------------------------------------------------- */
.topbar {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--fs-small);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	min-height: 42px;
	flex-wrap: wrap;
}
.topbar__note { display: flex; align-items: center; gap: var(--sp-2); margin: 0; }
.topbar__note .icon { color: var(--gold-500); }
.topbar__contact { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar__link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	color: inherit;
	text-decoration: none;
	font-weight: 500;
}
.topbar__link .icon { color: var(--gold-500); }
.topbar__link:hover { color: var(--gold-400); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--paper-3);
	transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.brand__mark { width: 52px; height: 52px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--navy-800);
	letter-spacing: 0.02em;
}
.brand__sub {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold-600);
}

.site-nav { display: flex; align-items: center; gap: var(--sp-5); }
.site-nav__list {
	display: flex;
	align-items: center;
	gap: var(--sp-5);
	list-style: none;
}
.site-nav__list a {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--navy-800);
	text-decoration: none;
	padding-block: var(--sp-2);
	border-bottom: 2px solid transparent;
	transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
	white-space: nowrap;
}
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--gold-600);
	border-bottom-color: var(--gold-500);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 10px;
	background: var(--navy-800);
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
}
.nav-toggle__bar {
	display: block;
	height: 2px;
	background: var(--white);
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}
.hero--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
	opacity: 0.28;
	z-index: -1;
}
/* Gold structural rule anchoring the hero to the trust bar below it. */
.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-600) 40%, transparent 100%);
}

.hero__inner {
	position: relative;
	padding-block: clamp(3.5rem, 9vw, 7.5rem);
}
.hero__content { max-width: 46rem; }

.hero__title {
	font-size: var(--fs-hero);
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.005em;
	margin-bottom: var(--sp-5);
}

.hero__lede {
	font-size: clamp(1.05rem, 1.5vw, 1.28rem);
	color: rgba(255, 255, 255, 0.86);
	max-width: 56ch;
	margin-bottom: var(--sp-6);
}
.hero__lede strong { color: var(--white); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-7); }

.hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3) var(--sp-6);
	list-style: none;
	padding-top: var(--sp-5);
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__proof li {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.82);
}
.hero__proof .icon { color: var(--gold-500); width: 1.05em; height: 1.05em; }

/* --------------------------------------------------------------------------
   6. TRUST BAR
   -------------------------------------------------------------------------- */
.trustbar { background: var(--navy-900); color: var(--white); }
.trustbar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-4);
	padding-block: var(--sp-5);
}
.trustbar__item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-left: var(--sp-4);
	border-left: 2px solid var(--gold-500);
}
.trustbar__value {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.1;
}
.trustbar__label { font-size: var(--fs-tiny); color: rgba(255, 255, 255, 0.66); text-transform: uppercase; letter-spacing: 0.1em; }

/* --------------------------------------------------------------------------
   7. SERVICES
   -------------------------------------------------------------------------- */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
	gap: var(--sp-5);
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	padding: var(--sp-6) var(--sp-5) var(--sp-5);
	background: var(--white);
	border: 1px solid var(--paper-3);
	border-top: 3px solid var(--navy-800);
	border-radius: var(--radius);
	transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-top-color 0.22s var(--ease);
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-top-color: var(--gold-500);
}
.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--paper);
	border-radius: var(--radius);
	color: var(--navy-700);
	transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--navy-800); color: var(--gold-500); }
.service-card__icon .icon { width: 24px; height: 24px; }
.service-card__title { font-size: var(--fs-h3); margin: 0; }
.service-card__desc { font-size: var(--fs-small); color: var(--ink-muted); margin: 0; flex: 1; }
.service-card__tag {
	align-self: flex-start;
	font-family: var(--font-display);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-600);
	padding: 2px 8px;
	border: 1px solid var(--paper-3);
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   8. ABOUT
   -------------------------------------------------------------------------- */
.about-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--sp-8);
	align-items: start;
}
.about-copy p { color: var(--ink-muted); }
.about-copy strong { color: var(--ink); }

.fact-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-4);
	margin: var(--sp-6) 0 0;
	padding-top: var(--sp-5);
	border-top: 2px solid var(--paper-3);
}
.fact dt {
	font-family: var(--font-display);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-600);
	margin-bottom: 2px;
}
.fact dd { margin: 0; font-weight: 500; color: var(--ink); }

.about-values {
	padding: var(--sp-6);
	background: var(--navy-800);
	border-radius: var(--radius-lg);
	color: var(--white);
}
.about-values__title { color: var(--white); font-size: var(--fs-h3); margin-bottom: var(--sp-5); }
.value-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-5); }
.value-list li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.value-list .icon { color: var(--gold-500); width: 22px; height: 22px; margin-top: 3px; }
.value-list div { display: flex; flex-direction: column; gap: 2px; }
.value-list strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.03em; }
.value-list span { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.72); line-height: 1.5; }

/* --------------------------------------------------------------------------
   9. WHY GRID
   -------------------------------------------------------------------------- */
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: var(--sp-5);
}
.why-card {
	padding: var(--sp-5);
	background: var(--paper);
	border-left: 3px solid var(--gold-500);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.why-card h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.why-card p { font-size: var(--fs-small); color: var(--ink-muted); margin: 0; }

/* --------------------------------------------------------------------------
   10. PROCESS
   -------------------------------------------------------------------------- */
.process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--sp-5);
	list-style: none;
	counter-reset: step;
}
.process__step {
	position: relative;
	padding-top: var(--sp-5);
	border-top: 2px solid var(--paper-3);
}
.process__num {
	display: block;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	color: var(--gold-500);
	font-variant-numeric: tabular-nums;
	margin-bottom: var(--sp-3);
}
.process__step h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.process__step p { font-size: var(--fs-small); color: var(--ink-muted); margin: 0; }

/* --------------------------------------------------------------------------
   11. GOVERNMENT
   -------------------------------------------------------------------------- */
.gov-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-8);
	align-items: start;
}
.gov-lede { color: rgba(255, 255, 255, 0.8); font-size: var(--fs-lede); }
.gov-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-6); }

.gov-panel {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	backdrop-filter: blur(4px);
}
.gov-panel__title {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	color: var(--white);
	font-size: var(--fs-h3);
	padding-bottom: var(--sp-4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.gov-panel__title .icon { color: var(--gold-500); }
.gov-panel__sub {
	color: var(--gold-400);
	font-size: var(--fs-tiny);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: var(--sp-5) 0 var(--sp-3);
}

.gov-facts { display: grid; gap: 0; margin: var(--sp-4) 0 0; }
.gov-facts > div {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-4);
	padding: 0.55rem 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
	font-size: var(--fs-small);
}
.gov-facts dt { color: rgba(255, 255, 255, 0.6); }
.gov-facts dd { margin: 0; color: var(--white); font-weight: 500; text-align: right; }

.code-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; }
.code-chips li {
	font-family: var(--font-display);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--white);
	background: rgba(240, 165, 0, 0.14);
	border: 1px solid rgba(240, 165, 0, 0.35);
	border-radius: 2px;
	padding: 3px 9px;
	font-variant-numeric: tabular-nums;
	cursor: help;
}

.gov-caps { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.gov-caps li {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.82);
}
.gov-caps .icon { color: var(--gold-500); width: 18px; height: 18px; margin-top: 3px; }

/* --------------------------------------------------------------------------
   12. SERVICE AREA
   -------------------------------------------------------------------------- */
.area-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: var(--sp-3);
	list-style: none;
}
.area-list__item {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	padding: var(--sp-3) var(--sp-4);
	background: var(--paper);
	border: 1px solid var(--paper-3);
	border-radius: var(--radius);
	font-size: var(--fs-small);
	font-weight: 500;
	color: var(--ink);
	transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.area-list__item:hover { border-color: var(--gold-500); background: var(--white); }
.area-list__item .icon { color: var(--gold-600); width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq__item {
	background: var(--white);
	border: 1px solid var(--paper-3);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq__item[open] { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	padding: var(--sp-4) var(--sp-5);
	font-family: var(--font-display);
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--navy-800);
	cursor: pointer;
	list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "+";
	font-size: 1.6rem;
	line-height: 1;
	color: var(--gold-600);
	flex: none;
	transition: transform 0.22s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); }
.faq__a p { color: var(--ink-muted); margin: 0; }

/* --------------------------------------------------------------------------
   14. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-8);
	align-items: start;
}

.contact-methods { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
.contact-method {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	padding: var(--sp-4);
	background: var(--white);
	border: 1px solid var(--paper-3);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
a.contact-method:hover { border-color: var(--gold-500); transform: translateX(3px); }
.contact-method > .icon { color: var(--gold-600); width: 26px; height: 26px; }
.contact-method > span { display: flex; flex-direction: column; }
.contact-method strong { font-size: 1.05rem; color: var(--navy-800); }
.contact-method span span { font-size: var(--fs-tiny); color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.contact-form-wrap {
	background: var(--white);
	border: 1px solid var(--paper-3);
	border-top: 4px solid var(--gold-500);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field label {
	font-family: var(--font-display);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--navy-800);
}
.field label span { color: var(--err); }
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	font-family: inherit;
	font-size: var(--fs-body);
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--paper-3);
	border-radius: var(--radius);
	transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { background: var(--white); border-color: var(--gold-500); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }

/* Honeypot — hidden from people, still reachable by bots. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-fineprint { font-size: var(--fs-tiny); color: var(--ink-muted); text-align: center; margin: 0; }
.form-notice {
	padding: var(--sp-4);
	border-radius: var(--radius);
	margin: 0 0 var(--sp-5);
	font-size: var(--fs-small);
	font-weight: 500;
}
.form-notice--ok { background: rgba(27, 127, 77, 0.1); border: 1px solid var(--ok); color: var(--ok); }
.form-notice--err { background: rgba(179, 38, 30, 0.08); border: 1px solid var(--err); color: var(--err); }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.72);
	padding-block: var(--sp-8) var(--sp-5);
	font-size: var(--fs-small);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: var(--sp-7);
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer { margin-bottom: var(--sp-4); }
.footer-blurb { color: rgba(255, 255, 255, 0.62); margin-bottom: var(--sp-4); }
.footer-legal-note { font-size: var(--fs-tiny); color: rgba(255, 255, 255, 0.45); line-height: 1.7; }

.footer-heading {
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-500);
	margin-bottom: var(--sp-4);
	padding-bottom: var(--sp-2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-list a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer-list a:hover { color: var(--gold-400); }
.footer-list--areas { color: rgba(255, 255, 255, 0.6); }

.footer-address { font-style: normal; display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer-contact { display: flex; align-items: flex-start; gap: var(--sp-3); color: rgba(255, 255, 255, 0.78); text-decoration: none; }
a.footer-contact:hover { color: var(--gold-400); }
.footer-contact .icon { color: var(--gold-500); width: 18px; height: 18px; margin-top: 3px; }

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	flex-wrap: wrap;
	margin-top: var(--sp-7);
	padding-top: var(--sp-5);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: var(--fs-tiny);
	color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p { margin: 0; }
.footer-bottom__menu { display: flex; gap: var(--sp-5); list-style: none; }
.footer-bottom__menu a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.footer-bottom__menu a:hover { color: var(--gold-400); }

/* Mobile call button — the highest-converting element on a contractor site. */
.call-fab {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 90;
	display: none;
	align-items: center;
	gap: var(--sp-2);
	padding: 0.85rem 1.3rem;
	background: var(--gold-500);
	color: var(--navy-900);
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   16. INTERIOR PAGES
   -------------------------------------------------------------------------- */
.page-hero {
	position: relative;
	background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
	color: var(--white);
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold-500), transparent 70%);
}
.page-hero__title { color: var(--white); font-size: var(--fs-h2); margin: 0; text-transform: uppercase; }
.page-hero__lede { color: rgba(255,255,255,0.8); margin-top: var(--sp-3); max-width: 60ch; }

.entry-content { padding-block: var(--sp-8); }
.entry-content h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: var(--sp-7); }
.entry-content h3 { font-size: var(--fs-h3); margin-top: var(--sp-6); }
.entry-content ul, .entry-content ol { padding-left: 1.25rem; margin-bottom: var(--sp-4); }
.entry-content li { margin-bottom: var(--sp-2); }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-5); }
.entry-content th, .entry-content td { padding: var(--sp-3); border-bottom: 1px solid var(--paper-3); text-align: left; }
.entry-content th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--fs-small); color: var(--navy-800); }

.table-scroll { overflow-x: auto; }

.post-card {
	padding: var(--sp-5);
	border: 1px solid var(--paper-3);
	border-radius: var(--radius);
	margin-bottom: var(--sp-5);
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.about-grid,
	.gov-grid,
	.contact-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
	.trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}

@media (max-width: 860px) {
	.nav-toggle { display: flex; }

	.site-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(88vw, 340px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: var(--sp-4);
		padding: 6rem var(--sp-5) var(--sp-6);
		background: var(--navy-800);
		transform: translateX(100%);
		transition: transform 0.3s var(--ease);
		overflow-y: auto;
		box-shadow: var(--shadow-lg);
	}
	.site-nav.is-open { transform: translateX(0); }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__list a {
		display: block;
		color: var(--white);
		padding: var(--sp-4) 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.site-nav__list a:hover { color: var(--gold-400); border-bottom-color: rgba(255,255,255,0.1); }
	.site-nav__cta { margin-top: var(--sp-4); }

	.nav-toggle { position: relative; z-index: 110; }

	.topbar__note { display: none; }
	.topbar__inner { justify-content: center; }
	.topbar__link span:not(.icon) { font-size: var(--fs-tiny); }

	.call-fab { display: inline-flex; }
	body { padding-bottom: 4.5rem; }
}

@media (max-width: 640px) {
	.field-row { grid-template-columns: 1fr; }
	.fact-list { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.trustbar__inner { grid-template-columns: 1fr; }
	.hero__actions .btn { width: 100%; }
	.contact-form-wrap { padding: var(--sp-5); }
	.topbar__contact { gap: var(--sp-4); }
	.topbar__link--alt { display: none; }
}

/* --------------------------------------------------------------------------
   18. MOTION & PRINT
   -------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@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;
	}
	.reveal { opacity: 1; transform: none; }
}

@media print {
	.topbar, .site-header, .call-fab, .contact-form-wrap, .site-footer { display: none !important; }
	body { color: #000; }
	.section--dark, .hero { background: #fff !important; color: #000 !important; }
	.section-title--light, .hero__title { color: #000 !important; }
}
