:root {
  --red: #c90000;
  --red-dark: #a60000;
  --ink: #191b1c;
  --muted: #56595b;
  --paper: #f5f5f3;
  --line: #deded9;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.65 Arial,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(38px, 4.5vw, 64px);
}
h2 {
  font-size: clamp(30px, 3vw, 44px);
  color: var(--red);
}
h3 {
  font-size: 23px;
}
p {
  color: var(--muted);
}
em {
  font-style: normal;
  color: var(--red);
}
ul {
  padding-left: 21px;
}
li + li {
  margin-top: 10px;
}
:focus-visible {
  outline: 3px solid #176cbb;
  outline-offset: 4px;
}
.container {
  width: min(calc(100% - 80px), var(--max));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.paper {
  background: var(--paper);
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 21px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 16px 22px;
  background: var(--red);
  border: 1px solid var(--red);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  min-height: 48px;
  line-height: 1.5;
}
.button:hover {
  background: var(--red-dark);
}
.button-small {
  padding: 11px 16px;
  font-size: 12px;
}
.button span,
.text-link span {
  font-size: 20px;
}
.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
}
.text-link:hover,
.section-link:hover {
  color: var(--red);
}
.section-link {
  margin-top: 28px;
}
.utility {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}
.utility-inner {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-inner > span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.utility-inner a {
  font-weight: 700;
}
.location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 97px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: block;
  flex-shrink: 0;
  width: 224px;
}
.brand img {
  width: 100%;
  height: auto;
}
.brand > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  color: var(--muted);
  margin-top: 7px;
}
.navigation summary {
  display: none;
}
.navigation nav {
  display: flex !important;
  gap: 23px;
  align-items: center;
}
.navigation nav > a {
  font-size: 12px;
  font-weight: 700;
}
.navigation nav > a[aria-current="page"]:not(.button) {
  color: var(--red);
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  background: var(--paper);
}
.hero-copy {
  padding: 62px 40px 64px max(40px, calc((100vw - var(--max)) / 2));
}
.hero h1 {
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: 1.055;
  letter-spacing: -0.05em;
  max-width: 640px;
}
.hero-description {
  font-size: 15px;
  max-width: 490px;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  margin: 24px 24px 24px 0;
  min-height: 575px;
}
.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.photo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  padding: 23px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.photo-caption > span:last-child {
  font-size: 37px;
  color: var(--red);
}
.proof {
  background: var(--red);
  color: #fff;
  padding: 30px 0 22px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metrics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metrics > div + div {
  border-left: 1px solid #ffffff80;
}
.metrics strong {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.metrics span {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}
.proof > p {
  color: #fff;
  text-align: center;
  font-size: 11px;
  margin-top: 23px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.feature h2 {
  font-size: 43px;
}
.feature p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 15px;
}
.feature img {
  aspect-ratio: 1.3;
  object-fit: cover;
}
.feature figcaption {
  padding: 14px 18px;
  background: var(--paper);
  font-size: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin-block: 25px;
}
.check-list li {
  font-size: 13px;
  display: flex;
  gap: 12px;
}
.check-list li:before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 38px;
}
.section-heading h2 {
  max-width: 730px;
}
.section-heading > p {
  max-width: 320px;
  font-size: 14px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 28px;
  background: var(--paper);
  transition:
    background 0.15s,
    border-color 0.15s;
}
.paper .card {
  background: #fff;
}
.card:hover {
  border-color: var(--red);
  background: #fff;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--red);
  margin-bottom: 26px;
}
.card-top svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-top > span {
  font-size: 23px;
}
.card h3 {
  font-size: 22px;
  color: var(--red);
  margin-bottom: 15px;
}
.card p {
  font-size: 13px;
  line-height: 1.7;
}
.card-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  padding-top: 22px;
  margin-top: auto;
  color: var(--muted);
}
.services-grid {
  grid-template-columns: repeat(4, 1fr);
}
.services-grid .card {
  padding: 25px;
  min-height: 296px;
}
.services-grid .card:first-child {
  grid-column: span 2;
  background: var(--ink);
  border-top-color: var(--red);
}
.services-grid .card:first-child h3 {
  font-size: 30px;
  color: #fff;
  max-width: 350px;
}
.services-grid .card:first-child p,
.services-grid .card:first-child .card-label {
  color: #eee;
  max-width: 370px;
}
.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}
.industry-grid .card-top svg {
  display: none;
}
.industry-grid .card {
  border-top: 1px solid var(--line);
}
.industry-grid .card-top {
  margin-bottom: 12px;
  justify-content: flex-end;
}
.industry-grid .card h3 {
  color: var(--ink);
}
.difference {
  background: var(--ink);
  padding-block: 85px;
  color: #fff;
}
.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.difference h2 {
  color: #fff;
  font-size: clamp(40px, 4.3vw, 62px);
}
.difference em,
.difference .eyebrow {
  color: #ff7873;
}
.difference p:not(.eyebrow) {
  color: #ccc;
  margin-top: 25px;
  max-width: 480px;
  font-size: 14px;
}
.difference .text-link {
  margin-top: 25px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid #ffffff30;
  padding: 25px 0;
  margin: 0;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li > span {
  font-size: 12px;
  color: #ff7873;
  margin-top: 3px;
}
.steps h3 {
  font-size: 24px;
}
.steps p {
  margin-top: 12px !important;
}
.empty-state {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.empty-mark {
  color: var(--red);
  font-size: 45px;
  line-height: 1;
}
.empty-state h3 {
  margin-bottom: 14px;
}
.empty-state p {
  font-size: 14px;
  max-width: 670px;
}
.empty-state .text-link {
  margin-top: 12px;
}
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.location-split p:not(.eyebrow) {
  margin-top: 24px;
}
.location-split .text-link {
  margin-top: 20px;
}
.area-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
}
.area-links > a {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  font-size: 19px;
  font-weight: 700;
}
.area-links small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.area-links > a > span:last-child {
  color: var(--red);
  font-size: 23px;
}
.area-links a:hover {
  color: var(--red);
}
.final-cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 65px 0;
}
.final-cta > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 14px;
}
.final-cta h2 {
  font-size: 40px;
}
.footer {
  background: #fff;
  padding-top: 55px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 45px;
}
.footer h2 {
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer p,
.footer address,
.footer-grid > div > a:not(.brand) {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}
.footer p {
  margin-top: 23px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  margin-bottom: 9px;
}
.footer address {
  margin-bottom: 15px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 28px;
}
.mobile-cta {
  display: none;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  padding-top: 25px;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero {
  padding-top: 52px;
  padding-bottom: 55px;
}
.page-hero h1 {
  max-width: 950px;
}
.page-hero > p:not(.eyebrow) {
  font-size: 17px;
  max-width: 860px;
  margin-top: 24px;
}
.hub-content {
  padding-bottom: 90px;
}
.hub-intro {
  max-width: 780px;
  margin-bottom: 35px;
}
.hub-intro p {
  font-size: 15px;
}
.badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  color: #7b3d00;
  background: #fff0d8;
  border: 1px solid #e5c398;
  padding: 5px 9px;
}
.construction-note {
  background: var(--paper);
  border-left: 4px solid var(--red);
  padding: 35px;
  margin-bottom: 38px;
}
.construction-note h2 {
  font-size: 28px;
  margin-top: 18px;
}
.construction-note p {
  margin-top: 15px;
  font-size: 15px;
  max-width: 750px;
}
.construction-note .button {
  margin-top: 22px;
}
.construction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 75px;
}
.construction-grid > section {
  border: 1px solid var(--line);
  padding: 25px;
}
.construction-grid h2 {
  font-size: 22px;
  color: var(--ink);
  margin-top: 20px;
}
.construction-grid p {
  font-size: 13px;
  margin-top: 15px;
}
.section-number {
  font-size: 11px;
  color: var(--red);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 90px;
  padding-bottom: 80px;
}
.content-section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}
.content-section h2,
.related h2 {
  font-size: 29px;
  margin-bottom: 22px;
}
.content-section p + p {
  margin-top: 18px;
}
.content-section li {
  font-size: 15px;
}
.content-section a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.glance {
  align-self: start;
  padding: 28px;
  background: var(--paper);
  border-top: 4px solid var(--red);
}
.glance dl {
  margin: 0;
}
.glance dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 20px;
}
.glance dd {
  font-size: 13px;
  color: var(--muted);
  margin: 7px 0 0;
}
.glance > a {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  margin-top: 25px;
}
.related {
  margin-top: 35px;
}
.related ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.related li {
  margin: 0;
}
.related a {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq {
  border-bottom: 1px solid var(--line);
  padding-block: 16px;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--red);
  font-size: 21px;
}
.faq p {
  font-size: 14px;
  margin-top: 14px;
}
.owner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 65px;
  align-items: center;
}
.owner img {
  width: 300px;
}
.owner p:not(.eyebrow) {
  margin-top: 22px;
}
.owner blockquote {
  margin: 27px 0 0;
  padding-left: 25px;
  border-left: 3px solid var(--red);
  font-size: 19px;
  font-style: italic;
}
.owner cite {
  display: block;
  margin-top: 13px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}
.link-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
}
.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.case-filters button {
  padding: 11px 15px;
  min-height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink);
}
.case-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.customer-grid img {
  object-fit: contain;
}
.customer-grid p {
  font-size: 12px;
}
.byline {
  font-size: 12px;
  margin-bottom: 25px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  padding-bottom: 80px;
}
.contact-copy h2 {
  font-size: 30px;
}
.contact-copy p {
  margin-top: 20px;
  font-size: 14px;
}
.contact-copy ol {
  font-size: 14px;
  padding-left: 20px;
  margin-block: 25px;
}
.contact-phone {
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  color: var(--red);
  margin-top: 16px;
}
.quote-panel {
  padding: 35px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.field label span {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #a9adad;
  border-radius: 2px;
  background: #fff;
  min-height: 46px;
  min-width: 0;
  font-size: 14px;
}
.field textarea {
  resize: vertical;
}
.field [aria-invalid="true"] {
  border: 2px solid var(--red);
}
.field-error {
  font-size: 12px;
  color: #a60000;
  margin-top: 7px;
}
.error-summary {
  padding: 20px;
  background: #fff4f2;
  border-left: 4px solid var(--red);
  margin-bottom: 24px;
}
.error-summary h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.error-summary p,
.error-summary li {
  font-size: 13px;
  color: #751400;
}
.error-summary a {
  text-decoration: underline;
}
.form-note {
  font-size: 12px;
  margin-bottom: 22px;
}
.privacy-note {
  font-size: 11px;
  margin-top: 18px;
}
.privacy-note a {
  text-decoration: underline;
}
.quote-panel button {
  margin-top: 25px;
  width: 100%;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.receipt {
  padding-bottom: 90px;
}
.receipt-panel {
  background: var(--paper);
  border-top: 4px solid var(--red);
  padding: 40px;
  max-width: 800px;
}
.receipt-panel h2 {
  font-size: 29px;
}
.receipt-panel p {
  margin-top: 18px;
}
.receipt-panel .button {
  margin-top: 25px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 100;
  padding: 12px;
  background: #fff;
}
.skip-link:focus {
  top: 10px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1101px) {
  .navigation:not([open]) > nav {
    display: flex !important;
  }
  .navigation {
    display: contents;
  }
  .navigation > nav {
    content-visibility: visible !important;
  }
}
@media (max-width: 1200px) {
  .navigation nav {
    gap: 14px;
  }
  .brand {
    width: 198px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-visual {
    min-height: 585px;
  }
  .feature,
  .location-split,
  .difference-grid {
    gap: 45px;
  }
  .detail-layout {
    gap: 45px;
  }
  .hero-actions {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .navigation {
    position: relative;
  }
  .navigation summary {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    padding: 15px;
    list-style: none;
  }
  .navigation summary::-webkit-details-marker {
    display: none;
  }
  .navigation:not([open]) nav {
    display: none !important;
  }
  .navigation nav {
    position: absolute;
    right: 0;
    top: 60px;
    width: min(350px, calc(100vw - 40px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 24px #0002;
    gap: 0;
  }
  .navigation nav > a {
    padding: 13px;
    font-size: 14px;
    min-height: 44px;
  }
  .navigation nav > .button {
    margin-top: 10px;
  }
  .nav-inner {
    min-height: 85px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-visual {
    min-height: 590px;
  }
  .cards {
    gap: 15px;
  }
  .card {
    padding: 24px;
  }
  .feature h2 {
    font-size: 37px;
  }
  .section-heading > p {
    max-width: 250px;
  }
  .contact-layout {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero-copy {
    padding: 45px 20px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-visual {
    margin: 20px 20px 20px 0;
    min-height: 565px;
  }
  .photo-caption {
    font-size: 16px;
    left: 15px;
    right: 15px;
    padding: 18px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 14px 17px;
  }
  .services-grid,
  .industry-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .card:first-child {
    grid-column: span 2;
  }
  .section {
    padding-block: 62px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: 600px;
    margin-top: 22px;
  }
  .feature {
    gap: 30px;
  }
  .feature h2 {
    font-size: 32px;
  }
  .difference-grid {
    gap: 35px;
  }
  .difference h2 {
    font-size: 42px;
  }
  .location-split {
    gap: 35px;
  }
  .location-split h2 {
    font-size: 31px;
  }
  .area-links {
    gap: 0 18px;
  }
  .area-links > a {
    font-size: 16px;
  }
  .final-cta h2 {
    font-size: 33px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .glance {
    max-width: none;
  }
  .construction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .owner {
    grid-template-columns: 200px 1fr;
    gap: 35px;
  }
  .owner img {
    width: 200px;
  }
  .owner blockquote {
    font-size: 17px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy ol {
    max-width: 650px;
  }
  .page-hero {
    padding-top: 38px;
  }
  .page-hero h1 {
    font-size: 43px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 85px;
  }
  .utility {
    font-size: 9px;
  }
  .utility-inner {
    height: 32px;
  }
  .utility-inner > span {
    gap: 7px;
  }
  .nav-inner {
    min-height: 78px;
  }
  .brand {
    width: 197px;
  }
  .navigation summary {
    padding-right: 0;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 40px 20px 32px;
  }
  .hero h1 {
    font-size: clamp(39px, 10.4vw, 57px);
    max-width: 510px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .hero-description {
    max-width: 500px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 25px;
  }
  .hero-visual {
    min-height: 320px;
    margin: 0 20px 20px;
  }
  .hero-photo {
    object-position: center;
  }
  .photo-caption {
    bottom: 16px;
    font-size: 19px;
    padding: 18px 21px;
  }
  .proof {
    padding: 25px 0 20px;
  }
  .metrics strong {
    font-size: 33px;
  }
  .metrics span {
    font-size: 11px;
    margin-top: 9px;
  }
  .proof > p {
    font-size: 9px;
    margin-top: 20px;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature h2 {
    font-size: 35px;
  }
  .feature img {
    aspect-ratio: 1.5;
  }
  .feature p:not(.eyebrow) {
    font-size: 14px;
  }
  .section {
    padding-block: 54px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 17px;
  }
  .cards,
  .services-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .card:first-child {
    grid-column: auto;
  }
  .services-grid .card {
    min-height: 0;
    padding: 25px;
  }
  .services-grid .card:first-child h3 {
    font-size: 28px;
  }
  .card h3 {
    font-size: 24px;
  }
  .card-top {
    margin-bottom: 20px;
  }
  .industry-grid .card {
    position: relative;
    padding-right: 46px;
  }
  .industry-grid .card-top {
    position: absolute;
    right: 22px;
    top: 20px;
  }
  .industry-grid .card h3 {
    font-size: 23px;
  }
  .difference {
    padding-block: 55px;
  }
  .difference-grid,
  .location-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .difference h2 {
    font-size: 45px;
  }
  .steps li {
    padding-block: 24px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .empty-state {
    padding: 26px;
    gap: 16px;
  }
  .empty-state h3 {
    font-size: 22px;
  }
  .empty-mark {
    font-size: 28px;
  }
  .location-split h2 {
    font-size: 35px;
  }
  .area-links > a {
    font-size: 18px;
  }
  .final-cta {
    padding-block: 46px;
  }
  .final-cta > .container {
    display: block;
  }
  .final-cta h2 {
    font-size: 35px;
  }
  .final-cta .button {
    margin-top: 25px;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 68px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2) {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 17px;
    font-size: 9px;
  }
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 9px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
    z-index: 25;
  }
  .mobile-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    min-height: 44px;
    flex: 1;
  }
  .mobile-cta a:last-child {
    background: var(--red);
    color: #fff;
    flex: 1.4;
  }
  .breadcrumbs {
    font-size: 10px;
    gap: 9px;
    padding-top: 20px;
  }
  .page-hero {
    padding-block: 35px 37px;
  }
  .page-hero h1 {
    font-size: 37px;
  }
  .page-hero > p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 21px;
  }
  .hub-content {
    padding-bottom: 55px;
  }
  .construction-note {
    padding: 25px;
  }
  .construction-note h2 {
    font-size: 26px;
  }
  .construction-grid {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
    gap: 13px;
  }
  .construction-grid > section {
    padding: 22px;
  }
  .construction-grid h2 {
    margin-top: 10px;
  }
  .construction-grid p {
    margin-top: 12px;
  }
  .content-section h2,
  .related h2 {
    font-size: 27px;
  }
  .content-section p {
    font-size: 15px;
  }
  .detail-layout {
    padding-bottom: 45px;
  }
  .related ul {
    grid-template-columns: 1fr;
  }
  .owner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .owner img {
    width: 210px;
  }
  .owner h2 {
    font-size: 35px;
  }
  .owner p:not(.eyebrow) {
    font-size: 14px;
  }
  .owner blockquote {
    font-size: 18px;
  }
  .quote-panel {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .field.full {
    grid-column: auto;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .contact-layout {
    padding-bottom: 50px;
  }
  .receipt-panel {
    padding: 27px;
  }
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Management program and grouped service catalogue. */
.hero-support {
  margin-top: 22px;
  max-width: 490px;
  font-size: 13px;
}
.hero-support a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.program-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: start;
}
.program-intro p + p {
  margin-top: 20px;
}
.program-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.program-benefits > div {
  padding: 25px;
  border-top: 3px solid var(--red);
  background: var(--paper);
}
.program-benefits h3 {
  margin-block: 16px;
}
.program-benefits p {
  font-size: 14px;
}
.program-note {
  margin-top: 22px;
  font-size: 13px;
}
.services-intro {
  max-width: 760px;
  margin: -12px 0 30px;
}
.managed-highlight {
  grid-template-columns: 1fr;
}
.managed-highlight .card {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
.managed-highlight .card h3,
.managed-highlight .card p,
.managed-highlight .card .card-label {
  color: #fff;
}
.managed-highlight .card-top {
  grid-column: 1/-1;
  color: #ff7873;
  margin-bottom: 15px;
}
.managed-highlight .card h3 {
  font-size: 30px;
}
.managed-highlight .card-label {
  grid-column: 1/-1;
}
.service-group {
  margin-top: 35px;
}
.service-group-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.grouped-services {
  grid-template-columns: repeat(3, 1fr);
}
.case-heading {
  font-size: 30px;
  margin-bottom: 26px;
}
.final-cta > .container > div {
  max-width: 770px;
}
.final-cta .button {
  flex-shrink: 0;
}
.navigation nav {
  gap: 16px;
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .nav-inner {
    gap: 14px;
  }
  .navigation nav {
    gap: 11px;
  }
  .navigation nav > a {
    font-size: 11px;
  }
  .brand {
    width: 185px;
  }
}
@media (max-width: 800px) {
  .program-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .program-benefits {
    gap: 15px;
  }
  .program-benefits > div {
    padding: 20px;
  }
  .grouped-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(34px, 9vw, 42px);
  }
  .hero .eyebrow {
    max-width: 310px;
    line-height: 1.6;
  }
  .hero-visual {
    min-height: 230px;
  }
  .program-intro h2 {
    font-size: 30px;
  }
  .program-intro p:not(.eyebrow) {
    font-size: 15px;
  }
  .program-benefits,
  .grouped-services,
  .managed-highlight .card {
    grid-template-columns: 1fr;
  }
  .program-benefits {
    margin-top: 30px;
  }
  .program-benefits h3 {
    margin-block: 10px;
  }
  .managed-highlight .card h3 {
    font-size: 27px;
  }
  .navigation nav {
    gap: 0;
    max-height: calc(100dvh - 180px);
    overflow-y: auto;
  }
}

/* Customer-facing refinement: quieter hierarchy and compact service choices. */
h2 {
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 40px);
}
h3 {
  letter-spacing: -0.02em;
}
.section {
  padding-block: 64px;
}
.hero h1 {
  font-size: clamp(38px, 4.2vw, 60px);
}
.hero-copy {
  padding-block: 54px;
}
.hero-visual {
  min-height: 470px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  gap: 18px 28px;
}
.program-intro {
  gap: 48px;
}
.program-intro h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.program-benefits {
  gap: 30px;
  margin-top: 30px;
}
.program-benefits > div {
  padding: 0;
  border: 0;
  background: none;
}
.program-benefits h3 {
  font-size: 22px;
  margin-block: 0 12px;
}
.program-benefits p,
.program-note {
  font-size: 16px;
}
.quiet-proof {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--ink);
}
.service-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service-overview h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.service-overview p {
  font-size: 16px;
}
.service-overview .text-link {
  margin-top: 12px;
}
.card,
.industry-grid .card {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: transparent;
  border-radius: 0;
}
.paper .card {
  background: transparent;
}
.card h3,
.card h2 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 12px;
}
.card p {
  font-size: 16px;
}
.card-label {
  font-size: 14px;
  color: var(--red);
}
.managed-highlight .card {
  background: var(--paper);
  display: block;
  padding: 28px;
}
.managed-highlight .card h2,
.managed-highlight .card p,
.managed-highlight .card .card-label {
  color: var(--ink);
}
.service-group-title {
  font-size: 28px;
}
.feature h2 {
  font-size: clamp(28px, 3vw, 40px);
}
.feature p:not(.eyebrow) {
  font-size: 17px;
  margin-top: 18px;
}
.feature img {
  aspect-ratio: 1.5;
}
.local-summary {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
}
.local-summary h2 {
  max-width: 500px;
}
.local-summary h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.local-summary p {
  margin-top: 18px;
}
.local-summary address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 22px;
}
.local-summary .text-link {
  margin-top: 18px;
}
.local-summary p a {
  text-decoration: underline;
}
.buying-questions {
  max-width: 920px;
}
.faq summary {
  font-size: 17px;
  min-height: 44px;
  align-items: center;
}
.faq p {
  font-size: 16px;
  max-width: 74ch;
}
.final-cta {
  padding-block: 48px;
}
.final-cta h2 {
  font-size: 34px;
}
.final-cta p:not(.eyebrow) {
  font-size: 16px;
  max-width: 65ch;
}
.final-cta .eyebrow {
  display: none;
}
.about-proof {
  padding-block: 25px 40px;
}
.about-proof h2 {
  font-size: 29px;
  margin-bottom: 28px;
}
.about-proof .metrics strong {
  font-size: 32px;
}
.about-proof .metrics > div {
  align-items: flex-start;
}
.about-proof p {
  font-size: 14px;
  margin-top: 22px;
  max-width: 85ch;
}
.contact-layout {
  display: block;
  max-width: 850px;
}
.call-first {
  max-width: 850px;
  padding-bottom: 64px;
}
.call-first h2 {
  font-size: 28px;
}
.call-first p {
  margin-top: 18px;
}
.call-first .button {
  margin-top: 25px;
  font-size: 17px;
}
.office-note,
.form-phone {
  font-size: 16px;
}
.form-phone {
  margin-top: 22px;
}
.form-phone a {
  text-decoration: underline;
}
.saved-details {
  margin-top: 28px;
}
.saved-details dd {
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.field label {
  font-size: 15px;
}
.form-note {
  font-size: 14px;
}
.content-section p,
.content-section li {
  font-size: 17px;
}
.text-link,
.section-link {
  font-size: 16px;
}
.footer p,
.footer address,
.footer-grid > div > a:not(.brand) {
  font-size: 14px;
}
.footer-grid > div > a:not(.brand) {
  min-height: 30px;
}
@media (max-width: 800px) {
  .service-overview {
    gap: 24px;
  }
  .local-summary {
    gap: 35px;
  }
  .feature {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .section {
    padding-block: 40px;
  }
  .hero-copy {
    padding: 30px 20px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-description {
    font-size: 17px;
    margin-top: 20px;
  }
  .hero-visual {
    min-height: 190px;
    margin-top: 0;
  }
  .hero-support {
    margin-top: 16px;
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px 20px;
  }
  .hero-actions .text-link {
    font-size: 15px;
  }
  .program-intro {
    gap: 20px;
  }
  .program-intro p:not(.eyebrow) {
    font-size: 16px;
  }
  .program-benefits {
    gap: 22px;
    margin-top: 24px;
  }
  .program-note {
    font-size: 15px;
  }
  .service-overview,
  .local-summary {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .service-overview h3 {
    font-size: 23px;
    margin-bottom: 8px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .feature p:not(.eyebrow) {
    font-size: 16px;
  }
  .feature figure {
    display: none;
  }
  .final-cta {
    padding-block: 38px;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .page-hero h1 {
    font-size: 34px;
  }
  .page-hero > p:not(.eyebrow) {
    font-size: 16px;
  }
  .about-proof .metrics strong {
    font-size: 28px;
  }
  .about-proof .metrics span {
    font-size: 12px;
  }
  .footer {
    padding-top: 38px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 14px;
  }
  .call-first {
    padding-bottom: 40px;
  }
}
