:root {
  color-scheme: light;
  --max-width: 1180px;
  --wide-width: 1420px;
  --ink: #191716;
  --muted: #6b6259;
  --paper: #fffaf0;
  --panel: #f2eadc;
  --line: #d9cbb7;
  --accent: #f26b1d;
  --accent-2: #2f6fad;
  --dark: #171717;
  --light: #ffffff;
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.18);
}

body.template-blueprint {
  --ink: #102033;
  --muted: #5d6b78;
  --paper: #f7fbff;
  --panel: #e8f1fa;
  --line: #b9d0e6;
  --accent: #2f83d6;
  --accent-2: #bf8c3d;
  --dark: #07192c;
}

body.template-cleanline {
  --ink: #172429;
  --muted: #647174;
  --paper: #fffdf8;
  --panel: #e9f7f6;
  --line: #c9dfdd;
  --accent: #0aa6be;
  --accent-2: #ff6f59;
  --dark: #182831;
}

body.template-rural {
  --ink: #251b14;
  --muted: #705f50;
  --paper: #fbf5e6;
  --panel: #ead9bd;
  --line: #c9ad82;
  --accent: #c95f28;
  --accent-2: #e7ad36;
  --dark: #21170f;
}

body.template-crew {
  --ink: #1e1a18;
  --muted: #695c55;
  --paper: #fff2d2;
  --panel: #ffd98f;
  --line: #e7b66d;
  --accent: #e4412e;
  --accent-2: #1d6aa3;
  --dark: #171717;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}

.demo-note {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  text-align: center;
}

.site-header {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 2px solid var(--dark);
  position: sticky;
  top: 0;
  z-index: 30;
}

.template-blueprint .site-header {
  border-color: var(--line);
  box-shadow: 0 0 0 1px rgba(47, 131, 214, 0.12);
}

.template-cleanline .site-header {
  border-color: var(--accent);
}

.template-rural .site-header {
  background: #f4e4c4;
  border-color: var(--dark);
}

.template-crew .site-header {
  background: #ffe6aa;
  border-color: var(--accent);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 22px;
  margin: 0 auto;
  max-width: var(--wide-width);
  min-height: 78px;
  padding: 12px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 228px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  width: 44px;
}

.template-blueprint .brand-mark {
  background: var(--accent);
}

.template-cleanline .brand-mark {
  background: var(--accent-2);
}

.template-rural .brand-mark {
  background: #3a2a1f;
}

.template-crew .brand-mark {
  background: var(--accent);
  transform: rotate(-2deg);
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-name {
  font-weight: 950;
}

.brand-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.phone-link {
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  align-items: center;
  background: var(--accent);
  border: 2px solid var(--dark);
  color: var(--dark);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.button.dark {
  background: var(--dark);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--dark);
}

.button.secondary {
  background: transparent;
  color: inherit;
}

.menu-button {
  background: var(--panel);
  border: 2px solid var(--dark);
  color: var(--ink);
  display: none;
  font-weight: 950;
  min-height: 44px;
  padding: 8px 14px;
}

.section {
  padding: 78px 24px;
}

.section.tight {
  padding-top: 44px;
}

.section.alt {
  background: var(--panel);
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max-width);
}

.section-wide {
  margin: 0 auto;
  max-width: var(--wide-width);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  max-width: 820px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: 96px;
  line-height: 0.92;
}

h2 {
  font-size: 58px;
  line-height: 0.98;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 20px;
}

.dark .lead,
.hero-dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: #fff;
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 color-mix(in srgb, var(--dark) 18%, transparent);
}

.template-blueprint .card,
.template-cleanline .card {
  border-color: var(--line);
  box-shadow: none;
}

.template-rural .card {
  background: #fff8e8;
  box-shadow: 10px 10px 0 rgba(64, 43, 26, 0.14);
}

.template-crew .card {
  box-shadow: 7px 7px 0 var(--accent-2);
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.stat-board {
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
}

.stat-board li {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  font-size: 16px;
  font-weight: 950;
  list-style: none;
  min-height: 88px;
  padding: 18px;
  place-items: center start;
}

.stat-board li:last-child {
  border-right: 0;
}

.tile-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.tile-list li {
  align-items: start;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  border: 2px solid var(--dark);
  color: var(--ink);
  display: grid;
  gap: 8px;
  grid-template-columns: 18px 1fr;
  padding: 14px;
}

.tile-list li::before {
  background: var(--accent);
  content: "";
  display: block;
  height: 12px;
  margin-top: 6px;
  width: 12px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-row {
  align-items: center;
  background: #fff;
  border: 2px solid var(--dark);
  display: grid;
  gap: 24px;
  grid-template-columns: 86px 1fr 0.8fr;
  padding: 18px;
}

.service-num {
  color: var(--accent);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.service-card {
  min-height: 210px;
}

.feature-slab {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-slab img {
  aspect-ratio: 4 / 3;
  border: 2px solid var(--dark);
  object-fit: cover;
  width: 100%;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 1fr;
}

.gallery-grid.three-up {
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.zoom-card {
  background: #fff;
  border: 2px solid var(--dark);
  color: inherit;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.zoom-card::after {
  background: var(--accent);
  border: 2px solid var(--dark);
  border-bottom: 0;
  border-right: 0;
  bottom: 0;
  color: var(--dark);
  content: "Open image";
  font-size: 13px;
  font-weight: 950;
  padding: 8px 10px;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: transform 160ms ease;
}

.zoom-card:hover::after,
.zoom-card:focus-visible::after {
  transform: translateY(0);
}

.zoom-card img {
  aspect-ratio: 16 / 10;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.zoom-card:hover img {
  transform: scale(1.025);
}

.zoom-card.large img {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 460px;
}

.zoom-card figcaption,
.zoom-card .caption {
  background: #fff;
  border-top: 2px solid var(--dark);
  color: var(--muted);
  font-weight: 800;
  padding: 14px 16px;
}

.material-board {
  display: grid;
  gap: 14px;
}

.material-row {
  align-items: center;
  background: #fff;
  border: 2px solid var(--dark);
  display: grid;
  gap: 18px;
  grid-template-columns: 0.7fr 1.25fr 1fr;
  padding: 18px;
}

.material-row strong {
  font-size: 22px;
}

.material-row span {
  color: var(--muted);
}

.process-grid {
  counter-reset: step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: #fff;
  border: 2px solid var(--dark);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.step-card::before {
  color: var(--accent);
  content: "0" counter(step);
  counter-increment: step;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: #fff;
  border: 2px solid var(--dark);
  display: grid;
  gap: 18px;
  padding: 24px;
}

.review-card blockquote {
  font-size: 20px;
  font-weight: 780;
  line-height: 1.3;
  margin: 0;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.area-panel {
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.95fr 1.05fr;
  padding: 34px;
}

.town-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.town-grid span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 900;
  padding: 10px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

details {
  background: #fff;
  border: 2px solid var(--dark);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

details p {
  color: var(--muted);
  margin-top: 12px;
}

.cta-panel {
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 36px;
}

.quote-form {
  background: #fff;
  color: var(--ink);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 950;
}

input,
select,
textarea {
  background: #fff;
  border: 2px solid var(--dark);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form-status {
  color: var(--accent);
  font-weight: 900;
  min-height: 24px;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 42px 24px 92px;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--max-width);
}

.footer-muted {
  color: rgba(255, 255, 255, 0.72);
}

.hub-footer {
  align-items: center;
  grid-template-columns: 1fr auto;
}

.hub-footer a {
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  text-decoration: none;
}

.footer-inner a {
  color: #fff;
}

.mobile-cta {
  display: none;
}

/* Demo hub */
.demo-hub {
  --ink: #171717;
  --muted: #635f58;
  --paper: #fbf7ef;
  --panel: #eee4d6;
  --line: #d7cbbb;
  --accent: #2d6f83;
  --accent-2: #c75a2b;
  --dark: #1d1c19;
}

.demo-hub .site-header {
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid var(--line);
}

.demo-hub .brand-mark {
  background: var(--accent);
  color: #fff;
}

.demo-hub .button {
  background: var(--accent);
  border: 1px solid var(--dark);
  border-radius: 4px;
  color: #fff;
}

.demo-hub .button:hover {
  background: var(--dark);
  color: #fff;
}

.hub-hero {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  padding: 82px 24px 58px;
}

.hub-hero-inner {
  display: grid;
  gap: 32px;
  margin: 0 auto;
  max-width: var(--wide-width);
}

.hub-hero .section-heading {
  max-width: 1040px;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 680px;
}

.hub-actions .button {
  flex: 1 1 220px;
  min-height: 54px;
  min-width: 0;
}

.hub-actions .button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--dark);
}

.demo-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
}

.demo-media {
  background: var(--dark);
  border-bottom: 1px solid var(--line);
  min-height: 0;
  overflow: hidden;
}

.demo-media img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.demo-card .card-body {
  align-content: start;
  display: grid;
  gap: 20px;
  grid-template-rows: auto 1fr auto;
  min-height: 260px;
  padding: 34px;
}

.demo-card .lead {
  font-size: 21px;
  line-height: 1.45;
}

.demo-card .button {
  align-self: end;
  min-height: 54px;
  width: 100%;
}

.demo-card h2 {
  font-size: 40px;
  line-height: 1.02;
}

.hub-next-panel {
  align-items: start;
}

.hub-next-list {
  display: grid;
  gap: 14px;
}

.hub-next-list p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  padding: 18px;
}

/* Work Truck Fence */
.work-hero {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.86), rgba(20, 18, 16, 0.3)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.work-hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 360px;
  margin: 0 auto;
  max-width: var(--wide-width);
  min-height: 700px;
  padding: 90px 24px 70px;
}

.hero-copy {
  align-self: center;
  display: grid;
  gap: 24px;
  max-width: 860px;
}

.hero-copy p {
  font-size: 22px;
  max-width: 720px;
}

.phone-board {
  align-self: end;
  background: var(--accent);
  border: 3px solid var(--dark);
  color: var(--dark);
  display: grid;
  gap: 18px;
  padding: 24px;
  transform: rotate(1.5deg);
}

.phone-board strong {
  font-size: 34px;
  line-height: 1;
}

.phone-board .button {
  background: var(--dark);
  color: #fff;
}

.work-order {
  background: var(--accent-2);
  border-bottom: 3px solid var(--dark);
  border-top: 3px solid var(--dark);
  color: #fff;
}

/* Blueprint deck */
.blueprint-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--dark);
  background-size: 34px 34px;
  color: #fff;
  overflow: hidden;
}

.blueprint-hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: var(--wide-width);
  min-height: 700px;
  padding: 78px 24px;
}

.blueprint-hero img {
  align-self: center;
  border: 2px solid var(--line);
  box-shadow: -24px 24px 0 rgba(47, 131, 214, 0.22);
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.measurement {
  border-top: 2px solid var(--accent);
  color: var(--line);
  font-weight: 850;
  margin-top: 24px;
  padding-top: 12px;
}

.blueprint-spread {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
}

.blueprint-card {
  background: var(--dark);
  border: 2px solid var(--accent);
  color: #fff;
  padding: 26px;
}

/* Clean Line */
.clean-hero {
  background: var(--paper);
  overflow: hidden;
}

.clean-hero-inner {
  align-items: stretch;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  margin: 0 auto;
  max-width: var(--wide-width);
  min-height: 680px;
}

.clean-hero-copy {
  align-content: center;
  background:
    linear-gradient(135deg, transparent 0 64%, color-mix(in srgb, var(--accent-2) 22%, transparent) 64% 100%),
    #fff;
  display: grid;
  gap: 24px;
  padding: 64px 78px;
}

.clean-hero-image {
  min-height: 560px;
  position: relative;
}

.clean-hero-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.clean-hero-image::after {
  background: var(--accent-2);
  bottom: 44px;
  content: "";
  height: 18px;
  left: -70px;
  position: absolute;
  transform: skewX(-18deg);
  width: 260px;
}

.need-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.need-tile {
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
}

.need-tile strong {
  color: var(--accent-2);
  font-size: 18px;
}

/* Rural */
.rural-hero {
  background: var(--dark);
  color: #fff;
}

.rural-hero-image {
  background-image:
    linear-gradient(90deg, rgba(33, 23, 15, 0.92), rgba(33, 23, 15, 0.2)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  min-height: 720px;
}

.rural-hero-inner {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: var(--wide-width);
  padding: 92px 24px;
}

.rural-hero .hero-copy {
  max-width: 820px;
}

.map-band {
  background: #382718;
  color: #fff;
}

.map-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.map-row li {
  border: 2px solid rgba(255, 255, 255, 0.28);
  min-height: 110px;
  padding: 18px;
}

/* Crew */
.crew-hero {
  background: var(--paper);
  border-bottom: 3px solid var(--dark);
}

.crew-hero-inner {
  display: grid;
  gap: 0;
  grid-template-columns: 0.95fr 1.05fr;
  margin: 0 auto;
  max-width: var(--wide-width);
  min-height: 700px;
}

.crew-copy {
  align-content: center;
  display: grid;
  gap: 24px;
  padding: 64px 74px;
}

.crew-copy h1 {
  transform: rotate(-1deg);
}

.crew-photo {
  min-height: 620px;
  position: relative;
}

.crew-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.crew-note {
  background: var(--accent);
  border: 3px solid var(--dark);
  bottom: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  left: -42px;
  padding: 18px;
  position: absolute;
  transform: rotate(-3deg);
  width: 260px;
}

.marquee {
  background: var(--accent-2);
  border-bottom: 3px solid var(--dark);
  border-top: 3px solid var(--dark);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  animation: marquee 22s linear infinite;
  display: inline-block;
  font-size: 22px;
  font-weight: 950;
  padding: 16px 0;
}

.marquee-track span {
  margin-right: 36px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  border: 3px solid #fff;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  background: #fff;
  border: 2px solid #000;
  color: #000;
  font-weight: 950;
  min-height: 44px;
  padding: 10px 14px;
  position: absolute;
  right: 24px;
  top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 46px;
  }

  .grid.four,
  .need-grid,
  .map-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-hero-inner,
  .blueprint-hero-inner,
  .clean-hero-inner,
  .crew-hero-inner,
  .feature-slab,
  .area-panel,
  .cta-panel,
  .blueprint-spread {
    grid-template-columns: 1fr;
  }

  .phone-board,
  .crew-note {
    transform: none;
  }

  .crew-note {
    left: 24px;
  }

  .clean-hero-copy,
  .crew-copy {
    padding: 56px 36px;
  }

  .gallery-grid,
  .gallery-grid.three-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 70px;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .brand-meta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    margin-left: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .section {
    padding: 56px 20px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-media {
    height: auto;
  }

  .demo-card .card-body {
    min-height: 0;
    padding: 24px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .work-hero-inner,
  .blueprint-hero-inner,
  .rural-hero-inner,
  .clean-hero-copy,
  .crew-copy {
    padding: 56px 20px;
  }

  .work-hero-inner,
  .blueprint-hero-inner,
  .rural-hero-image,
  .crew-hero-inner {
    min-height: 0;
  }

  .clean-hero-image,
  .crew-photo {
    min-height: 390px;
  }

  .stat-board,
  .grid.three,
  .review-grid,
  .process-grid,
  .faq-grid,
  .footer-inner,
  .hub-footer,
  .form-grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .stat-board li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .service-row,
  .material-row {
    grid-template-columns: 1fr;
  }

  .town-grid {
    grid-template-columns: 1fr;
  }

  .zoom-card.large img {
    min-height: 300px;
  }

  .mobile-cta {
    background: var(--paper);
    border-top: 2px solid var(--dark);
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 9px;
    position: fixed;
    right: 0;
    z-index: 40;
  }

  .mobile-cta .button {
    min-height: 48px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
