:root {
  --orange: #f07a1a;
  --orange-dark: #c4530c;
  --charcoal: #151515;
  --ink: #242424;
  --muted: #696969;
  --line: #dddddd;
  --paper: #f5f2ec;
  --white: #ffffff;
  --teal: #174247;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 12px 16px;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  color: var(--charcoal);
  background: rgba(245, 242, 236, .96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  width: 184px;
  height: 48px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity .2s ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.site-footer .brand-logo-light {
  opacity: 1;
}

.site-footer .brand-logo-dark {
  opacity: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 900;
  letter-spacing: 0;
  clip-path: polygon(0 0, 86% 0, 100% 28%, 100% 100%, 0 100%);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brand small {
  font-size: 12px;
  opacity: .72;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 32px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width .2s ease;
}

.main-nav a:hover::after { width: 100%; }

.main-nav a.is-active::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

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

.header-phone {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, .36);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header.is-scrolled .header-phone {
  border-color: rgba(0, 0, 0, .18);
  color: var(--charcoal);
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.mobile-contact-bar a {
  display: grid;
  place-items: center;
  min-height: 54px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-contact-bar a:first-child {
  background: var(--orange);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--orange);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 82px) 72px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media { z-index: -2; }

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .56) 38%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .05) 48%);
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 132px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

.hero-lead {
  max-width: 660px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, .88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--charcoal);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 0;
  width: min(420px, calc(100% - 36px));
  padding: 26px;
  background: var(--orange);
  color: var(--charcoal);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.05;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 82px) 76px;
  color: var(--white);
  overflow: hidden;
}

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

.page-hero .hero-media { z-index: -2; }
.page-hero .hero-shade { z-index: -1; }

.page-hero-content {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 104px);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  background: var(--white);
}

.page-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.service-jump {
  position: sticky;
  top: 84px;
  z-index: 20;
  display: flex;
  gap: 1px;
  overflow-x: auto;
  padding: 0 clamp(20px, 6vw, 82px);
  background: var(--charcoal);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.service-jump a {
  flex: 0 0 auto;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease;
}

.service-jump a:hover,
.service-jump a:focus-visible {
  background: var(--orange);
  color: var(--charcoal);
}

.side-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--charcoal);
  color: var(--white);
  border-top: 7px solid var(--orange);
}

.side-panel strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.side-panel span {
  color: rgba(255, 255, 255, .72);
}

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

.detail-card {
  display: block;
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  color: inherit;
  border-top: 6px solid var(--orange);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

a.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
  border-color: var(--teal);
}

.detail-card p {
  color: var(--muted);
}

.expectations {
  background: var(--paper);
}

.expectation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-left: 1px solid rgba(0, 0, 0, .12);
}

.expectation-list article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid rgba(0, 0, 0, .12);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.expectation-list span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--orange);
  font-weight: 900;
}

.expectation-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-band {
  background: var(--charcoal);
  color: var(--white);
}

.dark-band .detail-card {
  background: #202020;
}

.dark-band .detail-card p,
.dark-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.image-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.image-strip figure {
  min-height: 420px;
  margin: 0;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 1px;
  background: rgba(0, 0, 0, .12);
}

.timeline article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--white);
}

.timeline span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-page-form {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: clamp(28px, 6vw, 90px);
}

.proof-band {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .12);
}

.proof-card {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.proof-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.case-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .08);
}

.case-card div {
  padding: 28px;
}

.case-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--muted);
}

.case-card li {
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

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

.trust-row span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
}

.conversion-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px) clamp(20px, 6vw, 82px);
  background: var(--teal);
  color: var(--white);
}

.conversion-strip h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.7vw, 54px);
}

.conversion-strip .btn-ghost {
  border-color: rgba(255, 255, 255, .35);
}

.local-seo {
  background: var(--white);
}

.local-seo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-seo-list span {
  padding: 12px 15px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
  font-weight: 800;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: var(--white);
  border-left: 6px solid var(--orange);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 28px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 820px;
  margin: 0;
  padding: 0 28px 26px;
  color: var(--muted);
}

.section-pad {
  padding: clamp(76px, 9vw, 136px) clamp(20px, 6vw, 82px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 18px;
}

.intro-card {
  min-height: 290px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .08);
}

.intro-card.dark {
  background: var(--charcoal);
  color: var(--white);
}

.intro-card.orange {
  background: var(--orange);
  color: var(--charcoal);
}

.card-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--orange);
  font-weight: 900;
}

.intro-card.dark h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.split-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.split-copy,
.project-copy,
.split-image,
.project-image {
  min-width: 0;
}

.split-image {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat-row div {
  padding: 18px 0;
  border-top: 4px solid var(--orange);
}

.stat-row strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.services {
  background: var(--charcoal);
  color: var(--white);
}

.section-heading {
  max-width: 950px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.section-heading.compact {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
}

.service-card {
  min-height: 570px;
  display: grid;
  grid-template-rows: 235px 1fr;
  background: #202020;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
  background: #262626;
}

a.service-card:focus-visible,
a.detail-card:focus-visible,
.btn:focus-visible,
.header-phone:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.mobile-contact-bar a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.service-card img {
  filter: saturate(.92) contrast(1.04);
}

.service-card div {
  padding: 28px;
}

.service-card span {
  color: var(--orange);
  font-weight: 900;
}

.service-card p {
  color: rgba(255, 255, 255, .72);
}

.workfields {
  background: var(--teal);
  color: var(--white);
}

.field-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.field-list article {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.field-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 22px;
  text-transform: uppercase;
}

.field-list span {
  color: rgba(255, 255, 255, .78);
}

.decision {
  background: var(--white);
}

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

.decision-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--paper);
  border-top: 7px solid var(--orange);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.decision-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .12);
}

.decision-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.decision-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.project-image {
  height: 640px;
  min-height: 0;
  box-shadow: var(--shadow);
}

.project-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  clip-path: polygon(14% 52%, 36% 72%, 86% 16%, 100% 30%, 38% 96%, 0 62%);
}

.process {
  background: #ece6dc;
}

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

.process-grid article {
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border-top: 6px solid var(--orange);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.equipment {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

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

.equipment-grid span {
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border-left: 5px solid var(--orange);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 6vw, 82px);
  background: var(--orange);
  color: var(--charcoal);
}

.cta-band .eyebrow { color: var(--charcoal); }
.cta-band h2 { max-width: 900px; margin-bottom: 0; }
.cta-band .btn-primary { background: var(--charcoal); color: var(--white); }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(28px, 6vw, 90px);
  background: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  font-weight: 900;
  font-size: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

textarea { resize: vertical; }

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--teal);
  font-weight: 900;
}

.quote-flow {
  background: var(--white);
}

.quote-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-flow-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--paper);
  border-top: 7px solid var(--orange);
}

.quote-flow-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-weight: 900;
}

.quote-flow-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 82px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.site-footer a {
  color: var(--orange);
  font-weight: 900;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.text-page {
  max-width: 980px;
}

.text-page h2 {
  max-width: 720px;
  margin-top: 36px;
  font-size: clamp(28px, 4vw, 46px);
}

.text-page p {
  max-width: 820px;
  color: var(--muted);
}

.text-page a {
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .header-actions { display: none; }
  .service-grid,
  .decision-grid,
  .process-grid,
  .detail-grid,
  .proof-grid,
  .expectation-list,
  .quote-flow-grid,
  .case-grid,
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .field-list { grid-template-columns: repeat(2, 1fr); }
  .equipment,
  .conversion-strip,
  .contact,
  .contact-page-form,
  .page-intro,
  .project-feature,
  .split-section { grid-template-columns: 1fr; }
  .project-image,
  .split-image { min-height: 420px; aspect-ratio: 16 / 10; }

  .project-image {
    height: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
    line-height: 1;
  }

  h3 {
    font-size: 21px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .hero {
    min-height: 820px;
    padding: 130px 20px 132px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-panel {
    right: 20px;
    left: 20px;
    width: auto;
  }

  .service-grid,
  .decision-grid,
  .process-grid,
  .field-list,
  .detail-grid,
  .proof-grid,
  .expectation-list,
  .quote-flow-grid,
  .case-grid,
  .trust-row,
  .equipment-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 520px;
    padding: 130px 20px 70px;
  }

  .image-strip,
  .timeline article {
    grid-template-columns: 1fr;
  }

  .image-strip figure {
    min-height: 260px;
  }

  .service-card {
    min-height: auto;
    grid-template-rows: 250px auto;
  }

  .split-image,
  .project-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .intro-card,
  .service-card div,
  .field-list article,
  .process-grid article {
    padding: 24px;
  }

  .cta-band,
  .conversion-strip,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .brand { min-width: 0; }
  .brand-logo-wrap {
    width: 154px;
    height: 42px;
  }

  .mobile-contact-bar {
    display: grid;
  }
}
