:root {
  --white: #ffffff;
  --neutral: #f4f4f2;
  --neutral-strong: #e7e7e3;
  --ink: #171717;
  --graphite: #404040;
  --muted: #6a6a66;
  --line: #d7d7d2;
  --orange: #f36f21;
  --orange-action: #b94700;
  --orange-hover: #963a00;
  --header-height: 76px;
  --content-width: 1180px;
  --radius: 6px;
  --shadow: 0 18px 42px rgba(23, 23, 23, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#estimate {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Archivo, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
}

h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--neutral {
  background: var(--neutral);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading > * {
  margin-bottom: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--orange-action);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.eyebrow--light {
  color: #ffb181;
}

.lead {
  max-width: 720px;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--orange-action);
}

.button--primary:hover {
  background: var(--orange-hover);
}

.button--secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light-outline {
  color: var(--white);
  background: rgba(23, 23, 23, 0.25);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--light-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  color: var(--orange-action);
  font-weight: 800;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 142px;
  height: 58px;
  object-fit: contain;
}

.nav-wrap,
.site-nav {
  display: flex;
  align-items: center;
}

.nav-wrap {
  gap: 28px;
}

.site-nav {
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 25px 0 23px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  background: var(--orange);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero {
  height: calc(100svh - 124px);
  min-height: 540px;
  max-height: 760px;
}

.hero-media,
.page-hero-media,
.hero-media picture,
.page-hero-media picture {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 10, 10, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 790px;
}

.hero-copy h1 {
  max-width: 780px;
}

.hero-copy .lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffc19a;
}

.page-hero {
  min-height: 420px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 58px;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: 48px;
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  min-height: 108px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 2px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 48px;
  height: 5px;
  content: "";
  background: var(--orange);
}

.service-number {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-card p {
  color: var(--graphite);
}

.service-card .text-link {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
}

.service-band {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 520px;
}

.service-band:nth-child(even) .service-band-media {
  order: 2;
}

.service-band-media {
  min-height: 520px;
  overflow: hidden;
}

.service-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-band-copy {
  display: flex;
  align-items: center;
  padding: 72px max(34px, calc((100vw - var(--content-width)) / 2));
  background: var(--neutral);
}

.service-band:nth-child(even) .service-band-copy {
  background: var(--white);
}

.service-band-copy > div {
  max-width: 520px;
}

.service-band-copy ul,
.plain-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-band-copy li,
.plain-list li {
  position: relative;
  padding: 11px 0 11px 25px;
  border-top: 1px solid var(--line);
}

.service-band-copy li::before,
.plain-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.service-group h3 {
  padding-bottom: 17px;
  border-bottom: 3px solid var(--ink);
}

.service-group p {
  color: var(--graphite);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card[hidden] {
  display: none;
}

.project-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--neutral-strong);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

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

.project-card-body {
  min-height: 188px;
  padding: 24px 24px 26px;
}

.project-card-body p {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 15px;
}

.project-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-action);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-open {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: zoom-in;
  text-align: left;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 750;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--orange-action);
  border-color: var(--orange-action);
}

.project-dialog {
  width: min(940px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(23, 23, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog-image-wrap {
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.dialog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-copy {
  padding: 25px 28px 30px;
}

.dialog-copy p {
  margin-bottom: 0;
  color: var(--graphite);
}

/* Process and values */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-step {
  padding: 30px 30px 8px 0;
}

.process-step + .process-step {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.process-step strong {
  display: block;
  margin-bottom: 34px;
  color: #ffb181;
  font-size: 14px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 44px;
}

.value-item {
  padding-top: 22px;
  border-top: 4px solid var(--orange);
}

.value-item p {
  color: var(--graphite);
}

/* Split sections */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.split-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy .lead {
  font-size: 18px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact {
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  margin-bottom: 5px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 24px;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

/* CTA */
.cta-band {
  color: var(--white);
  background: var(--graphite);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 62px 0;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.contact-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--graphite);
}

.contact-list a:hover {
  color: var(--orange-action);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.estimate-form {
  padding: 34px;
  background: var(--neutral);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field label,
.field-label,
.field legend {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bdbdb7;
  border-radius: 4px;
}

.field input,
.field select {
  min-height: 49px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.field input[type="file"] {
  padding: 10px;
}

.file-input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0 !important;
}

.file-control {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 14px;
  padding: 8px;
  background: var(--white);
  border: 1px solid #bdbdb7;
  border-radius: 4px;
}

.file-picker {
  display: inline-flex !important;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--neutral);
  border: 1px solid var(--graphite);
  border-radius: 3px;
  cursor: pointer;
  line-height: 1.2;
}

.file-input:focus-visible + .file-picker {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.file-name {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.form-status {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #25613b;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #a13722;
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: var(--ink);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field--checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
}

.field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.field--checkbox label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.legal-page {
  background: var(--white);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-copy p {
  max-width: 72ch;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.site-footer {
  color: var(--ink);
  background: var(--neutral);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 72px;
  padding: 64px 0 42px;
}

.footer-brand .brand-logo {
  margin-bottom: 15px;
}

.footer-brand p,
.footer-contact p {
  color: var(--graphite);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-action);
}

.footer-title {
  margin-bottom: 17px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.mobile-action-bar {
  display: none;
}

/* Reveal enhancement */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .header-cta {
    display: none;
  }

  .nav-wrap {
    gap: 0;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 270px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-band {
    grid-template-columns: 1fr 1fr;
  }

  .service-band-copy {
    padding: 54px 34px;
  }

  .service-groups {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .split-layout,
  .contact-layout {
    gap: 46px;
  }

  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 62px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .container {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .section {
    padding: 70px 0;
  }

  .brand-logo {
    width: 122px;
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px 24px 100px;
    overflow-y: auto;
    background: var(--white);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav a {
    display: block;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    color: var(--orange-action);
  }

  .hero {
    height: calc(100svh - 150px);
    min-height: 450px;
    max-height: 660px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-copy .lead {
    font-size: 17px;
  }

  .hero .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero,
  .page-hero-content {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .page-hero-content {
    padding-top: 60px;
    padding-bottom: 42px;
  }

  .trust-item {
    min-height: 102px;
    padding: 20px 18px;
  }

  .service-grid,
  .project-grid,
  .service-groups,
  .value-grid,
  .split-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 290px;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band:nth-child(even) .service-band-media {
    order: initial;
  }

  .service-band-media {
    min-height: 360px;
  }

  .service-band-copy {
    padding: 48px 24px 58px;
  }

  .project-card-body {
    min-height: auto;
  }

  .split-layout {
    gap: 34px;
  }

  .split-media {
    order: -1;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-form {
    padding: 25px 20px;
  }

  .file-control {
    align-items: stretch;
    flex-direction: column;
  }

  .file-name {
    padding: 2px 4px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 34px;
    padding-top: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    padding-bottom: 22px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    min-height: 62px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(23, 23, 23, 0.1);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    color: var(--ink);
  }

  .mobile-action-bar a:last-child {
    color: var(--white);
    background: var(--orange-action);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
  }

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

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    padding: 25px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .process-step strong {
    margin-bottom: 18px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

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

  .filter-button:first-child {
    grid-column: 1 / -1;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
