:root {
  --navy: #182635;
  --navy2: #24394d;
  --steel: #4d6478;
  --steel-light: #7c94a6;
  --orange: #d9622b;
  --orange-dark: #b34f21;
  --amber: #e8a33d;
  --bg: #f4f5f7;
  --paper: #ffffff;
  --ink: #1c232c;
  --muted: #5c6672;
  --line: #e2e5ea;
  --line-soft: #edeff2;
  --serif: 'Oswald', 'Arial Narrow', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 { font-size: clamp(32px, 6vw, 54px); }
h2 { font-size: clamp(24px, 4vw, 34px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--muted); }

.section { padding: 64px 0; }
.section-alt { background: var(--paper); }
.section-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-dark .eyebrow { color: var(--amber); }

/* Header */
header.site-header {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--orange);
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand .accent { color: var(--orange); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease;
}
.header-cta:hover { background: var(--orange-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Blueprint/schematic grid motif -- ties to the "Plans & Engineering" story
   instead of a generic decorative texture. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero .blueprint-corner {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: 120px;
  height: 90px;
  border-left: 1.5px solid rgba(232,163,61,.4);
  border-bottom: 1.5px solid rgba(232,163,61,.4);
  pointer-events: none;
}
.hero .blueprint-corner::before,
.hero .blueprint-corner::after {
  content: "";
  position: absolute;
  background: rgba(232,163,61,.55);
}
.hero .blueprint-corner::before { left: -3px; bottom: -1px; width: 7px; height: 2px; }
.hero .blueprint-corner::after { left: -1px; bottom: -3px; width: 2px; height: 7px; }
.hero .blueprint-label {
  position: absolute;
  right: 6%;
  bottom: calc(12% - 20px);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(232,163,61,.6);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero .blueprint-corner, .hero .blueprint-label { display: none; }
}
.hero .wrap { position: relative; }
.hero-inner { max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lede {
  font-size: 19px;
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stat b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--amber);
}
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.72); }

/* Cards / grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid var(--steel);
}
.card:nth-child(3n+1) { border-top-color: var(--orange); }
.card:nth-child(3n+2) { border-top-color: var(--steel); }
.card:nth-child(3n+3) { border-top-color: var(--amber); }
.card .num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--line);
  -webkit-text-stroke: 1.5px var(--steel-light);
  color: transparent;
  margin-bottom: 6px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 14.5px; }

/* Why local */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .why-row { grid-template-columns: 1fr; } }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
}
.why-list strong { display: block; color: var(--navy); margin-bottom: 3px; }
.why-list p { margin: 0; font-size: 14.5px; }

.stat-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 36px;
}
.stat-panel .eyebrow { color: var(--amber); }
.stat-panel h3 { color: #fff; }
.stat-panel p { color: rgba(255,255,255,.8); }
.stat-panel ul { padding-left: 20px; margin: 0; color: rgba(255,255,255,.85); font-size: 14.5px; }
.stat-panel li { margin-bottom: 8px; }

/* FAQ accordion */
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question .plus {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--orange);
  transition: transform .2s ease;
  font-family: var(--sans);
  font-weight: 400;
}
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner { padding: 0 22px 20px; }
.faq-answer-inner p { margin: 0; font-size: 15px; }

/* Lead form */
.form-panel {
  background: var(--paper);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(24,38,53,.18);
  border-top: 5px solid var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-reassure { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-timeline {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-status { margin-top: 14px; font-size: 14px; text-align: center; display: none; }
.form-status.is-success { display: block; color: #1c7a3f; }
.form-status.is-error { display: block; color: #b3261e; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 40px 0 28px;
  font-size: 13.5px;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
footer.site-footer a:hover { text-decoration: underline; }

/* Service area -- bold color-blocked band instead of a plain white/alt section */
.service-area-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.service-area-band::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  right: -80px; top: -140px;
  pointer-events: none;
}
.service-area-band .eyebrow { color: rgba(255,255,255,.85); }
.service-area-band h2 { color: #fff; }
.service-area-band p { color: rgba(255,255,255,.92); }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; position: relative; }
.city-chip {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 999px;
}

/* Page hero (interior pages, e.g. privacy policy) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding: 52px 0;
}
.page-hero h1 { color: #fff; margin: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
