:root {
  color-scheme: light;
  --navy-950: #06263a;
  --navy-900: #0a3047;
  --navy-800: #173f58;
  --ink: #13272f;
  --muted: #52636a;
  --paper: #fffefb;
  --sand-50: #f8f7f3;
  --sand-100: #efede6;
  --sand-200: #ded9ce;
  --champagne: #d7b35f;
  --champagne-deep: #765719;
  --white: #ffffff;
  --border: #d5d0c7;
  --focus: #e4b84f;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Aptos', 'Avenir Next', 'Segoe UI', Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(1rem, 3.2vw, 2rem);
  --section: clamp(4rem, 8vw, 7.25rem);
  --radius-sm: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0; }
h1 { margin-bottom: 1.25rem; font-size: clamp(2.7rem, 5.6vw, 4.9rem); line-height: 1; }
h2 { margin-bottom: 1rem; font-size: clamp(2.05rem, 4vw, 3.25rem); line-height: 1.06; }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.15; }
p { margin-top: 0; }

.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-top: 1.5rem; }
.section--sand { background: var(--sand-50); }
.section--navy { color: var(--white); background: var(--navy-900); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin-bottom: 1rem; color: var(--navy-800); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--accent { color: var(--navy-800); }
.eyebrow--gold { color: var(--champagne); }
.lede { max-width: 62ch; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.26rem); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.85rem 1.35rem; align-items: center; margin-top: 2rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 0.8rem; padding: 0.78rem 1rem 0.72rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 750; letter-spacing: 0.045em; line-height: 1.2; text-align: center; text-decoration: none; text-transform: uppercase; transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease; }
.button--primary { color: var(--white); background: var(--navy-950); }
.button--primary:hover { background: var(--navy-800); }
.button--outline { border-color: var(--navy-800); color: var(--navy-950); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--navy-800); }
.button--light { color: var(--navy-950); background: var(--white); }
.button--light:hover { background: var(--sand-100); }
.text-action { display: inline-flex; min-height: 48px; align-items: center; gap: 0.6rem; color: var(--navy-900); font-weight: 700; }
.button:focus-visible, .text-action:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 0.75rem; left: 0.75rem; padding: 0.65rem 0.9rem; transform: translateY(-160%); color: var(--white); background: var(--navy-950); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.utility-bar { color: #e3edf1; background: var(--navy-950); font-size: 0.76rem; }
.utility-bar__inner { display: flex; min-height: 34px; align-items: center; justify-content: flex-end; gap: 1.5rem; }
.utility-bar__contact { display: flex; gap: 1.25rem; }
.utility-bar a { display: inline-flex; min-height: 42px; align-items: center; gap: 0.45rem; color: inherit; text-decoration: none; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--border); background: rgba(253, 252, 249, 0.98); }
.header-row { display: grid; min-height: 84px; grid-template-columns: 215px 1fr auto; gap: 2rem; align-items: center; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 205px; height: auto; }
.desktop-nav { justify-self: end; }
.desktop-nav ul { display: flex; gap: clamp(1rem, 2.3vw, 2rem); align-items: center; margin: 0; padding: 0; list-style: none; }
.desktop-nav a { display: inline-flex; min-height: 46px; align-items: center; border-bottom: 2px solid transparent; color: #334148; font-size: 0.88rem; font-weight: 650; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { border-bottom-color: var(--champagne); color: var(--navy-950); }
.header-action .button { min-height: 46px; }
.menu-button { display: none; width: 50px; height: 50px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy-950); transition: transform 150ms ease, opacity 150ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { position: absolute; z-index: 90; top: 100%; right: 0; left: 0; max-height: calc(100dvh - 84px); overflow-y: auto; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--paper); }
.mobile-panel[hidden] { display: none; }
.mobile-nav { padding-block: 0.75rem 1.35rem; }
.mobile-nav > a { display: flex; min-height: 56px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); color: var(--navy-950); font-family: var(--font-display); font-size: 1.3rem; text-decoration: none; }
.mobile-nav > a[aria-current="page"] { color: var(--champagne-deep); }
.mobile-nav .mobile-nav__phone { justify-content: flex-start; gap: 0.7rem; border-bottom: 0; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }

.home-hero { padding-bottom: clamp(2.75rem, 5vw, 4.5rem); background: var(--paper); }
.home-hero__grid { position: relative; isolation: isolate; width: 100%; min-height: clamp(590px, 66vh, 700px); overflow: hidden; padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2)); }
.home-hero__grid::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(6, 38, 58, 0.98) 0%, rgba(6, 38, 58, 0.92) 43%, rgba(6, 38, 58, 0.52) 72%, rgba(6, 38, 58, 0.12) 100%); content: ''; }
.home-hero__copy { position: relative; z-index: 2; display: flex; width: min(62%, 760px); min-height: inherit; flex-direction: column; justify-content: center; padding-block: clamp(3.5rem, 6vw, 5rem) clamp(4.5rem, 7vw, 6rem); color: var(--white); }
.home-hero__copy .eyebrow { color: #d8e3e7; }
.home-hero__copy h1 { max-width: 16ch; color: var(--white); font-size: clamp(3.15rem, 4.6vw, 4.15rem); line-height: 1; }
.home-hero__copy .lede { max-width: 48ch; color: #edf3f5; }
.home-hero__copy .button--primary { color: var(--navy-950); background: var(--champagne); }
.home-hero__copy .button--primary:hover { background: #e2c477; }
.home-hero__copy .text-action { min-height: 50px; padding: 0.72rem 0; color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
.home-hero__image { position: absolute; z-index: 0; inset: 0; min-height: 100%; margin: 0; }
.home-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.proof-line { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -3.25rem; border: 1px solid var(--border); background: var(--paper); }
.proof-line > div { padding: 1.25rem 1.5rem; }
.proof-line > div + div { border-left: 1px solid var(--border); }
.proof-line strong, .proof-line span { display: block; }
.proof-line strong { color: var(--navy-950); font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; }
.proof-line span { margin-top: 0.15rem; color: var(--muted); font-size: 0.8rem; }

.government-contracting { padding-block: clamp(4rem, 8vw, 6.75rem); color: var(--ink); background: var(--sand-100); }
.government-contracting__grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.government-contracting h2 { max-width: 12ch; font-size: clamp(2.5rem, 4.1vw, 3.55rem); }
.government-contracting__copy > p:not(.eyebrow) { max-width: 42ch; color: var(--muted); }
.government-contracting figure { height: clamp(310px, 36vw, 450px); margin: 0; overflow: hidden; }
.government-contracting figure img { width: 100%; height: 100%; object-fit: cover; }
.government-contracting dl { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); margin: -1rem 0 0; border-top: 1px solid var(--border); }
.government-contracting dl > div { display: grid; grid-template-columns: 0.65fr 1fr; gap: 1.25rem; padding: 1.1rem 1.4rem 1.1rem 0; border-bottom: 1px solid var(--border); }
.government-contracting dl > div + div { padding-left: 1.4rem; border-left: 1px solid var(--border); }
.government-contracting dt { color: var(--muted); font-size: 0.75rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.government-contracting dd { margin: 0; color: var(--navy-950); font-family: var(--font-display); font-size: 1.2rem; line-height: 1.35; }

.split-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.65fr); gap: clamp(2rem, 7vw, 6rem); align-items: end; margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.split-heading h2 { max-width: 13ch; margin-bottom: 0; }
.split-heading > p { margin-bottom: 0.3rem; color: var(--muted); }
.facility-directory { border-top: 1px solid var(--border); }
.facility-row { display: grid; min-height: 170px; grid-template-columns: 3rem minmax(150px, 220px) minmax(0, 1fr) 2.5rem; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: padding 150ms ease, background-color 150ms ease; }
.facility-row:hover { padding-inline: 1rem; background: var(--sand-50); }
.facility-row__number { align-self: start; padding-top: 0.25rem; color: var(--champagne-deep); font-family: var(--font-display); font-size: 1rem; }
.facility-row__image { width: 100%; height: 138px; object-fit: cover; }
.facility-row h2, .facility-row h3 { margin-bottom: 0.45rem; color: var(--navy-950); font-size: clamp(1.8rem, 4vw, 2.9rem); }
.facility-row p { max-width: 62ch; margin: 0; color: var(--muted); }
.facility-row__arrow { color: var(--navy-800); }

.approach-preview { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.approach-preview__intro h2 { max-width: 12ch; }
.approach-preview__intro > p:not(.eyebrow) { color: #cbd9df; }
.walkthrough-steps { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.2); list-style: none; }
.walkthrough-steps li { display: grid; grid-template-columns: 4rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.walkthrough-steps li > span { color: var(--champagne); font-family: var(--font-display); font-size: 1.2rem; }
.walkthrough-steps h3 { margin-bottom: 0.3rem; color: var(--white); font-size: 1.55rem; }
.walkthrough-steps p { margin: 0; color: #cbd9df; }

.area-preview__grid { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.area-preview h2 { max-width: 11ch; }
.area-preview p:not(.eyebrow) { max-width: 52ch; color: var(--muted); }
.area-preview__content { min-width: 0; }
.area-preview__content figure { height: 260px; margin: 0 0 1rem; overflow: hidden; }
.area-preview__content figure img { width: 100%; height: 100%; object-fit: cover; }
.area-preview ul { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.area-preview li { min-height: 102px; padding: 1.2rem 1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.area-preview li:nth-child(3n) { border-right: 0; }
.area-preview strong, .area-preview span { display: block; }
.area-preview strong { color: var(--navy-950); font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.area-preview span { color: var(--muted); font-size: 0.78rem; }

.residential-services { scroll-margin-top: 110px; padding-block: clamp(3rem, 6vw, 4.75rem); border-top: 1px solid var(--border); background: var(--sand-50); }
.residential-services__grid { display: grid; grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr); gap: clamp(2.5rem, 8vw, 7rem); align-items: center; }
.residential-services__intro h2 { max-width: 12ch; font-size: clamp(2rem, 3.6vw, 2.85rem); }
.residential-services__intro > p:not(.eyebrow) { max-width: 50ch; color: var(--muted); }
.residential-services__intro .text-action { margin-top: 0.6rem; }
.residential-services ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.residential-services li { display: grid; min-height: 94px; grid-template-columns: 2.25rem minmax(0, 1fr); gap: 0.6rem; align-items: center; padding: 1.15rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--navy-950); font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.25; }
.residential-services li:nth-child(even) { border-right: 0; }
.residential-services li span { align-self: start; padding-top: 0.15rem; color: var(--champagne-deep); font-family: var(--font-body); font-size: 0.72rem; font-weight: 750; }

.contact-band { padding-block: clamp(3.25rem, 6vw, 5rem); color: var(--white); background: var(--navy-800); }
.contact-band__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: center; }
.contact-band h2 { max-width: 16ch; margin-bottom: 0.6rem; }
.contact-band p:not(.eyebrow) { max-width: 57ch; margin: 0; color: #dce7eb; }
.contact-band__actions { display: flex; flex-direction: column; gap: 0.7rem; align-items: stretch; }
.contact-band__actions > a:not(.button) { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 0.55rem; color: var(--white); font-size: 0.86rem; font-weight: 700; overflow-wrap: anywhere; }

.breadcrumb { border-bottom: 1px solid var(--border); background: var(--paper); }
.breadcrumb ol { display: flex; min-height: 48px; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0; padding: 0; color: var(--muted); font-size: 0.76rem; list-style: none; }
.breadcrumb li + li::before { margin-right: 0.5rem; color: #9aa1a4; content: '/'; }
.breadcrumb a { min-height: 32px; display: inline-flex; align-items: center; }
.page-hero { padding-block: clamp(3.5rem, 8vw, 7rem); }
.page-hero--facilities { background: var(--sand-50); }
.page-hero--approach { color: var(--white); background: var(--navy-900); }
.page-hero--approach .lede { color: #cedbe0; }
.page-hero--area { background: var(--sand-100); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); gap: clamp(2rem, 8vw, 7rem); align-items: end; }
.page-hero h1 { max-width: 11ch; margin-bottom: 0; }
.page-hero .lede { margin-bottom: 0.3rem; }
.page-hero--media { padding-block: 0; }
.page-hero--media .page-hero__grid { min-height: 480px; grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr); gap: 0; align-items: stretch; }
.page-hero--media .page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem) 0; }
.page-hero--media h1 { max-width: 14ch; font-size: clamp(3rem, 4.5vw, 3.9rem); }
.page-hero--media .lede { max-width: 38ch; margin-top: 1.25rem; }
.page-hero--media figure { min-height: 100%; margin: 0; overflow: hidden; }
.page-hero--media figure img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--approach figure img { object-position: 52% center; }
.page-hero--area figure img { object-position: 58% center; }

.scope-table { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.scope-table h2 { max-width: 9ch; }
.scope-table dl { margin: 0; border-top: 1px solid var(--border); }
.scope-table dl > div { display: grid; grid-template-columns: 0.35fr 1fr; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.scope-table dt { color: var(--navy-950); font-family: var(--font-display); font-size: 1.3rem; }
.scope-table dd { margin: 0; color: var(--muted); }

.facility-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); background: var(--sand-50); }
.facility-hero__grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.facility-hero__copy h1 { max-width: 15ch; font-size: clamp(2.65rem, 4.6vw, 4.15rem); }
.facility-hero figure { position: relative; height: min(520px, 54vw); max-height: 520px; min-height: 400px; margin: 0; }
.facility-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.facility-hero figure figcaption { position: absolute; right: 0; bottom: 0; padding: 0.45rem 0.7rem; color: var(--white); background: rgba(7,39,53,0.88); font-size: 0.7rem; }
.area-rows { border-top: 1px solid var(--border); }
.area-rows article { display: grid; grid-template-columns: 4rem minmax(180px, 0.65fr) minmax(0, 1fr); gap: clamp(1rem, 4vw, 3rem); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.area-rows article > span { color: var(--champagne-deep); font-family: var(--font-display); }
.area-rows h3 { margin: 0; color: var(--navy-950); }
.area-rows p { margin: 0; color: var(--muted); }
.walkthrough-brief { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.walkthrough-brief h2 { max-width: 11ch; }
.walkthrough-brief > div > p:last-child { color: #cbd9df; }
.walkthrough-brief ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.2); list-style: none; }
.walkthrough-brief li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.walkthrough-brief li svg { flex: 0 0 auto; margin-top: 0.25rem; color: var(--champagne); }
.related { padding-block: 2.5rem; border-bottom: 1px solid var(--border); }
.related__grid { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 2rem; align-items: center; }
.related h2 { margin: 0; font-size: 1.5rem; }
.related__grid > div { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.related__grid > div a { display: inline-flex; min-height: 42px; align-items: center; gap: 0.35rem; color: var(--navy-900); font-size: 0.86rem; font-weight: 700; }

.approach-page .walkthrough-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top-color: var(--border); }
.approach-page .walkthrough-steps li { display: block; padding: 2rem clamp(1.2rem, 3vw, 2.25rem) 2rem 0; border-bottom-color: var(--border); }
.approach-page .walkthrough-steps li + li { padding-left: clamp(1.2rem, 3vw, 2.25rem); border-left: 1px solid var(--border); }
.approach-page .walkthrough-steps h3 { margin-top: 1.2rem; color: var(--navy-950); font-size: clamp(1.65rem, 3vw, 2.15rem); }
.approach-page .walkthrough-steps p { color: var(--muted); }
.approach-page .walkthrough-steps li > span { color: var(--champagne-deep); }
.operations-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.operations-grid h2 { max-width: 11ch; }
.operations-grid > div > p:last-child { color: var(--muted); }
.operations-grid dl { margin: 0; border-top: 1px solid var(--border); }
.operations-grid dl > div { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.operations-grid dt { font-family: var(--font-display); font-size: 1.45rem; }
.operations-grid dd { margin: 0.3rem 0 0; color: var(--muted); }
.ready-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(3rem, 8vw, 7rem); }
.ready-grid h2 { max-width: 8ch; }
.ready-grid ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.ready-grid li { min-height: 110px; padding: 1.2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ready-grid li:nth-child(even) { border-right: 0; }

.region-list { border-top: 1px solid var(--border); }
.region-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.region-list > section { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.region-list h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.region-list ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem 2rem; margin: 0; padding: 0; list-style: none; }
.region-list li { display: flex; min-height: 48px; align-items: center; gap: 0.7rem; color: var(--navy-950); font-weight: 700; }
.region-list li svg { color: var(--champagne-deep); }
.boundary-section { padding-block: clamp(3rem, 6vw, 5rem); }
.boundary-note { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); gap: 0; align-items: stretch; background: var(--paper); }
.boundary-note figure { min-height: 370px; margin: 0; overflow: hidden; }
.boundary-note figure img { width: 100%; height: 100%; object-fit: cover; }
.boundary-note__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.boundary-note h2 { max-width: 10ch; }
.boundary-note .button-row { margin-top: 1.4rem; }

.contact-hero { color: var(--white); background: var(--navy-900); }
.contact-hero__grid { display: grid; min-height: 600px; grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr); gap: 0; align-items: stretch; }
.contact-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem) 0; }
.contact-hero h1 { max-width: 9.5ch; font-size: clamp(3.2rem, 4.8vw, 4.3rem); }
.contact-hero .lede { color: #cedbe0; }
.contact-hero figure { min-height: 100%; margin: 0; overflow: hidden; }
.contact-hero figure img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.direct-contact { border-top: 1px solid rgba(255,255,255,0.24); }
.contact-hero__copy .direct-contact { margin-top: 1.5rem; }
.direct-contact a { display: grid; min-width: 0; grid-template-columns: 2.5rem minmax(0, 1fr); gap: 0.75rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,0.24); text-decoration: none; }
.direct-contact a > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,0.35); }
.direct-contact small, .direct-contact strong { display: block; }
.direct-contact small { color: #aebfc6; font-size: 0.72rem; text-transform: uppercase; }
.direct-contact strong { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 400; overflow-wrap: anywhere; }
.contact-layout { display: grid; grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.contact-layout aside { position: sticky; top: 112px; }
.contact-layout aside h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.contact-layout aside ol { margin: 1.75rem 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.contact-layout aside li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-layout aside li span { color: var(--champagne-deep); font-family: var(--font-display); }
.contact-layout aside li p { margin: 0; color: var(--muted); }
.aside-note { color: var(--muted); font-size: 0.85rem; }
.walkthrough-form { min-width: 0; padding: clamp(1.2rem, 4vw, 2.5rem); border-top: 4px solid var(--champagne); background: var(--sand-50); }
.form-intro h2 { margin-bottom: 0.5rem; font-size: clamp(1.8rem, 3.4vw, 2.65rem); }
.form-intro p { color: var(--muted); font-size: 0.86rem; }
.form-summary { margin: 1rem 0; padding: 0.8rem 1rem; border-left: 3px solid #a3382f; color: #7a2b25; background: #f8e9e6; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: flex; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.35rem; color: var(--navy-950); font-size: 0.83rem; font-weight: 750; }
.optional { color: var(--muted); font-size: 0.72rem; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; min-height: 52px; padding: 0.75rem 0.8rem; border: 1px solid #a9a7a0; border-radius: var(--radius-sm); color: var(--ink); background: var(--white); }
.field textarea { min-height: 150px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a3382f; box-shadow: 0 0 0 1px #a3382f; }
.field-hint, .field-error { display: block; margin-top: 0.3rem; font-size: 0.75rem; line-height: 1.4; }
.field-hint { color: var(--muted); }
.field-error { min-height: 1.05em; color: #8b2e26; font-weight: 700; }
.form-submit { margin-top: 1.35rem; border: 0; cursor: pointer; }
.form-note { max-width: 68ch; margin: 0.85rem 0 0; color: var(--muted); font-size: 0.78rem; }

.not-found { min-height: 62dvh; padding-block: clamp(5rem, 12vw, 9rem); background: var(--sand-50); }
.not-found h1 { max-width: 13ch; }
.not-found > .container > p:not(.eyebrow) { max-width: 55ch; color: var(--muted); }

.site-footer { padding-top: clamp(3.5rem, 7vw, 5.75rem); color: #d6e0e4; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: minmax(250px, 1.3fr) 0.55fr minmax(220px, 0.8fr); gap: clamp(2.5rem, 7vw, 6rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.footer-brand img { width: 220px; height: auto; }
.footer-brand p { max-width: 34ch; margin-top: 1.2rem; color: #aebfc6; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h2 { margin-bottom: 0.9rem; color: var(--champagne); font-family: var(--font-body); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a { display: inline-flex; min-height: 40px; align-items: center; color: #e6edef; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact span { margin-top: 0.8rem; color: #92a8b1; font-size: 0.8rem; }
.footer-bottom { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.16); color: #92a8b1; font-size: 0.75rem; }
.footer-bottom a { min-height: 40px; display: inline-flex; align-items: center; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .header-row { grid-template-columns: 195px 1fr auto; }
  .desktop-nav { display: none; }
  .header-action { justify-self: end; }
  .menu-button { display: block; }
  .home-hero__copy { width: min(68%, 680px); }
  .related__grid { grid-template-columns: 1fr auto; }
  .related__grid > div { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 780px) {
  :root { --section: clamp(3.7rem, 12vw, 5.5rem); }
  h1 { font-size: clamp(2.65rem, 11vw, 4.2rem); }
  .utility-bar__contact a:last-child { display: none; }
  .utility-bar__inner { justify-content: center; }
  .header-row { min-height: 74px; grid-template-columns: 1fr auto; gap: 1rem; }
  .brand img { width: 190px; }
  .header-action { display: none; }
  .mobile-panel { max-height: calc(100dvh - 74px); }
  .home-hero__grid { min-height: 610px; padding-inline: var(--gutter); }
  .home-hero__grid::before { background: linear-gradient(90deg, rgba(6, 38, 58, 0.96), rgba(6, 38, 58, 0.78)); }
  .home-hero__copy { width: 100%; min-height: 610px; padding-block: 3.5rem 5rem; }
  .home-hero__copy h1 { max-width: 13ch; font-size: clamp(2.7rem, 9vw, 3.45rem); }
  .home-hero__image img { object-position: 62% center; }
  .home-hero__image figcaption { display: none; }
  .proof-line { margin-top: -2rem; }
  .proof-line { width: 100%; grid-template-columns: 1fr; border-right: 0; border-left: 0; }
  .proof-line > div { display: grid; grid-template-columns: minmax(160px, 0.8fr) 1fr; gap: 1rem; padding: 1rem var(--gutter); }
  .proof-line > div + div { border-top: 1px solid var(--border); border-left: 0; }
  .split-heading, .government-contracting__grid, .approach-preview, .area-preview__grid, .residential-services__grid, .page-hero__grid, .scope-table, .facility-hero__grid, .walkthrough-brief, .operations-grid, .ready-grid, .boundary-note, .contact-hero__grid, .contact-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 1.3rem; }
  .government-contracting__grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .government-contracting figure { height: 330px; }
  .government-contracting dl { grid-template-columns: 1fr; margin-top: 0; }
  .government-contracting dl > div + div { padding-left: 0; border-left: 0; }
  .facility-row { min-height: 132px; grid-template-columns: 2.5rem minmax(110px, 150px) minmax(0, 1fr) 1.5rem; gap: 0.8rem; }
  .facility-row__image { height: 110px; }
  .facility-row:hover { padding-inline: 0; background: transparent; }
  .facility-row h2, .facility-row h3 { font-size: clamp(1.65rem, 7vw, 2.35rem); }
  .approach-preview { gap: 2.5rem; }
  .area-preview__grid { gap: 2.5rem; }
  .residential-services__grid { gap: 2rem; }
  .contact-band__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-band__actions { align-items: flex-start; }
  .page-hero__grid { gap: 1.5rem; }
  .page-hero--media .page-hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .page-hero--media .page-hero__copy { padding: 3.5rem 0; }
  .page-hero--media h1 { font-size: clamp(2.65rem, 9vw, 3.65rem); }
  .page-hero--media figure { height: clamp(300px, 72vw, 430px); min-height: 0; }
  .page-hero h1 { margin-bottom: 0.5rem; }
  .scope-table { gap: 2rem; }
  .facility-hero__grid { gap: 2.5rem; }
  .facility-hero figure { height: clamp(340px, 95vw, 520px); min-height: 0; }
  .area-rows article { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .area-rows article p { grid-column: 2; }
  .walkthrough-brief { gap: 2.5rem; }
  .related__grid { grid-template-columns: 1fr; }
  .related__grid > div { grid-column: auto; grid-row: auto; }
  .related__grid .button { justify-self: start; }
  .approach-page .walkthrough-steps { grid-template-columns: 1fr; }
  .approach-page .walkthrough-steps li { padding: 1.5rem 0; }
  .approach-page .walkthrough-steps li + li { padding-left: 0; border-left: 0; }
  .ready-grid { gap: 2rem; }
  .region-list > section { grid-template-columns: 1fr; gap: 1rem; }
  .boundary-note { grid-template-columns: 1fr; }
  .boundary-note figure { min-height: 0; height: clamp(280px, 70vw, 390px); }
  .contact-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .contact-hero__copy { padding: 3.5rem 0; }
  .contact-hero figure { min-height: 0; height: clamp(300px, 72vw, 430px); }
  .contact-layout aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .brand img { width: min(185px, 56vw); }
  .menu-button { width: 48px; height: 48px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .text-action { justify-content: center; }
  .home-hero__copy { padding-block: 2.8rem 3rem; }
  .home-hero__copy .button-row { flex-direction: column; align-items: stretch; }
  .proof-line > div { grid-template-columns: 1fr; gap: 0.1rem; }
  .government-contracting dl > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .facility-row { grid-template-columns: 2rem minmax(88px, 104px) minmax(0, 1fr); }
  .facility-row__image { height: 84px; }
  .facility-row p { display: none; }
  .facility-row__arrow { display: none; }
  .area-preview ul, .residential-services ul, .ready-grid ul, .region-list ul { grid-template-columns: 1fr; }
  .area-preview li, .residential-services li, .ready-grid li { border-right: 0; }
  .contact-band__actions, .contact-band__actions .button { width: 100%; }
  .contact-band__actions > a:not(.button) { justify-content: flex-start; }
  .scope-table dl > div { grid-template-columns: 1fr; gap: 0.35rem; }
  .facility-hero figure { height: 340px; }
  .area-rows article { grid-template-columns: 1.8rem minmax(0, 1fr); gap: 0.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .walkthrough-form { margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .direct-contact strong { font-size: 0.98rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (forced-colors: active) {
  .button { border-color: ButtonText; }
  .menu-button span { background: ButtonText; }
}
