:root {
  --red: #e00000;
  --red-dark: #ad0000;
  --ink: #111214;
  --charcoal: #1c1f22;
  --steel: #49525a;
  --muted: #646a70;
  --line: #dadde0;
  --paper: #f6f6f3;
  --white: #ffffff;
  --max: 1360px;
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 20px max(32px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: var(--white);
}

.brand__name {
  display: grid;
  gap: 1px;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.16rem;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.1vw, 38px);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 14px 0;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  display: grid;
  gap: 6px;
  justify-items: start;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.header-call span {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

.header-call__numbers {
  display: grid;
  gap: 3px;
}

.header-call__numbers a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.header-call__numbers a:hover,
.header-call__numbers a:focus-visible {
  color: var(--red);
}

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

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: max(720px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  padding: 96px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--paper) url("assets/hero-video-poster.jpg") right center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246, 246, 243, 1) 0%, rgba(246, 246, 243, 0.98) 32%, rgba(246, 246, 243, 0.76) 50%, rgba(246, 246, 243, 0.1) 74%);
  pointer-events: none;
  content: "";
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 540px;
  margin-bottom: 26px;
  font-size: 5.75rem;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.3rem;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.hero p {
  max-width: 480px;
  margin-bottom: 34px;
  color: #2f3439;
  font-size: 1.06rem;
}

.hero__actions,
.button,
.text-link {
  display: flex;
  align-items: center;
}

.hero__actions {
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  min-height: 64px;
  justify-content: center;
  gap: 14px;
  padding: 0 34px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button--primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.emergency-call-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.emergency-call-group__alt {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
}

.emergency-call-group__alt:hover,
.emergency-call-group__alt:focus-visible {
  color: var(--red);
}

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

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.proof-strip__item {
  min-height: 172px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 34px 28px;
  background: linear-gradient(135deg, #111214, #1d2023);
}

.proof-strip__item span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-strip__item p {
  max-width: 220px;
  margin: 0;
  color: #d9dcdf;
  font-size: 0.92rem;
  line-height: 1.4;
}

.logo-marquee {
  overflow: hidden;
  padding: 42px 0 46px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  background: #f7f7f4;
}

.logo-marquee__heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
}

.logo-marquee__heading .eyebrow {
  margin-bottom: 0;
}

.logo-marquee h2 {
  justify-self: start;
  max-width: 760px;
  margin: 0;
  color: rgba(17, 18, 20, 0.92);
  font-size: 1.95rem;
  line-height: 1.02;
  text-align: left;
}

.logo-marquee__viewport {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.7);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
}

.logo-marquee__track.is-ready {
  animation: logo-scroll 95s linear infinite;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}

.logo-card {
  width: 196px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 12px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.logo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
}

@keyframes logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: 620px;
  background: var(--white);
}

.split-section__text {
  display: grid;
  align-content: center;
  padding: 84px max(44px, calc((100vw - var(--max)) / 2)) 84px max(28px, calc((100vw - var(--max)) / 2));
}

.split-section__text p:not(.eyebrow) {
  max-width: 470px;
  color: #3f454b;
}

.split-section__media {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.02), rgba(17, 18, 20, 0.14)),
    url("assets/who-we-are-fire-home.png") center 34% / cover no-repeat;
}

.text-link {
  width: fit-content;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
}

.section-band {
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

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

.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: #3f454b;
}

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

.service-card {
  min-height: 272px;
  display: grid;
  align-content: start;
  padding: 34px 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 4px;
  background: linear-gradient(135deg, #ffffff, #efefec);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(224, 0, 0, 0.35);
  box-shadow: 0 18px 40px rgba(17, 18, 20, 0.08);
  outline: 0;
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.service-card h3 {
  min-height: 68px;
  margin-bottom: 16px;
  font-size: 1.24rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-card__link {
  align-self: end;
  margin-top: 28px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card__link::after {
  content: " ->";
}

.emergency-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.88)),
    url("assets/hero-fire-damage.png") center / cover no-repeat;
  color: var(--white);
}

.emergency-panel h2 {
  max-width: 460px;
}

.emergency-panel p {
  color: #d9dcdf;
}

.emergency-panel__intro p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 32px;
}

.response-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.response-steps li {
  min-height: 245px;
  display: grid;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.response-steps span {
  margin-bottom: 46px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.response-steps h3 {
  font-size: 1.22rem;
}

.response-steps p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-area {
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.service-area .section-heading {
  margin-bottom: 38px;
}

.service-area__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-area__grid span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.96rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.service-area__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: #111214;
  color: var(--white);
}

.service-area__note span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-area__note a {
  color: var(--white);
  font-weight: 800;
}

.trusted {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 82px;
  background: var(--white);
  color: var(--ink);
}

.trusted__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.trusted__intro h2 {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3rem;
}

.trusted__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 18, 20, 0.14);
}

.trusted__grid article {
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.65fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(17, 18, 20, 0.14);
}

.trusted__grid span,
.trusted__grid h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.trusted__grid span {
  color: var(--red);
  font-size: 0.9rem;
}

.trusted__grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.trusted__grid p {
  margin: 0;
  color: #4c5359;
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.projects-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: end;
  padding: 88px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 1), rgba(246, 246, 243, 0.86)),
    url("assets/field-site-review.jpg") right center / cover no-repeat;
}

.projects-hero__content {
  max-width: 720px;
}

.projects-hero h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 4.8rem;
}

.projects-hero__content p:not(.eyebrow) {
  max-width: 620px;
  color: #333a40;
  font-size: 1.06rem;
}

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

.project-index a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.74);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-index a::after {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 9px;
  background:
    linear-gradient(var(--red), var(--red)) left center / 20px 2px no-repeat,
    linear-gradient(45deg, transparent 46%, var(--red) 48% 58%, transparent 60%) right center / 9px 9px no-repeat;
  transition: transform 180ms ease;
}

.project-index a:hover,
.project-index a:focus-visible {
  border-color: rgba(224, 0, 0, 0.35);
  outline: 0;
}

.project-index a:hover::after,
.project-index a:focus-visible::after {
  transform: translateX(3px);
}

.project-index a.project-index__featured {
  grid-column: 1 / -1;
  min-height: 82px;
  margin-top: 14px;
  padding: 18px 20px;
  border-color: rgba(17, 18, 20, 0.88);
  background: var(--ink);
  color: var(--white);
}

.project-index a.project-index__featured span {
  display: grid;
  gap: 7px;
}

.project-index a.project-index__featured small {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-index a.project-index__featured strong {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-index a.project-index__featured::after {
  background:
    linear-gradient(var(--red), var(--red)) left center / 24px 2px no-repeat,
    linear-gradient(45deg, transparent 46%, var(--red) 48% 58%, transparent 60%) right center / 10px 10px no-repeat;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
  padding: 84px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  background: var(--white);
}

.project-detail:nth-of-type(odd) {
  background: var(--paper);
}

.project-detail__content {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.project-detail h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 3.1rem;
}

.project-detail__content p:not(.eyebrow) {
  max-width: 560px;
  color: #3f454b;
}

.project-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.project-points li {
  position: relative;
  padding-left: 18px;
  color: #3f454b;
  line-height: 1.45;
}

.project-points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  content: "";
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-media-grid figure,
.project-placeholder {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 4px;
  background: #f7f7f4;
}

.project-media-grid figure {
  display: grid;
  grid-template-rows: clamp(250px, 17vw, 320px) auto;
}

.project-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.project-media-grid__image--contain {
  object-fit: contain;
  background: #111214;
}

.project-media-grid figcaption {
  padding: 14px 16px;
  color: #4c5359;
  font-size: 0.84rem;
  line-height: 1.35;
}

.project-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #6c7378;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.notable-projects {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: 44px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  background: #111214;
  color: var(--white);
}

.notable-projects__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.notable-projects h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 3rem;
}

.notable-projects__intro p:not(.eyebrow) {
  max-width: 560px;
  color: #d8dadd;
}

.notable-projects__list {
  display: grid;
  gap: 18px;
}

.notable-case {
  display: grid;
  grid-template-columns: minmax(380px, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.notable-case:nth-child(even) {
  grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1.2fr);
}

.notable-case:nth-child(even) .notable-case__media {
  order: 2;
}

.notable-case__media {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  border-right: 1px solid rgba(17, 18, 20, 0.08);
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.08), rgba(17, 18, 20, 0.02)),
    #f7f7f4;
}

.notable-case:nth-child(even) .notable-case__media {
  border-right: 0;
  border-left: 1px solid rgba(17, 18, 20, 0.08);
}

.notable-case__media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.notable-carousel__image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 0;
  border: 0;
  background: #111214;
  cursor: zoom-in;
}

.notable-carousel__image {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.notable-carousel__image.is-active {
  opacity: 1;
}

.notable-carousel__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.72);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.notable-carousel__control::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.notable-carousel__control--prev {
  left: 14px;
}

.notable-carousel__control--prev::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.notable-carousel__control--next {
  right: 14px;
}

.notable-carousel__control--next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.notable-carousel__control:hover,
.notable-carousel__control:focus-visible {
  background: rgba(230, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.notable-carousel__count {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.notable-carousel.is-single .notable-carousel__control,
.notable-carousel.is-single .notable-carousel__count {
  display: none;
}

.notable-case__body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 40px;
}

.notable-case__body .eyebrow {
  margin-bottom: 2px;
}

.notable-case h3 {
  max-width: 760px;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  line-height: 0.92;
}

.notable-case p {
  margin: 0;
  color: #4c5359;
  font-size: 0.98rem;
  line-height: 1.55;
}

.notable-case__details {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.notable-case__details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.notable-case__details summary::-webkit-details-marker {
  display: none;
}

.notable-case__details summary::after {
  content: "";
  width: 22px;
  height: 8px;
  background:
    linear-gradient(var(--red), var(--red)) left center / 18px 2px no-repeat,
    linear-gradient(45deg, transparent 46%, var(--red) 48% 58%, transparent 60%) right center / 8px 8px no-repeat;
  transition: transform 180ms ease;
}

.notable-case__details[open] summary::after {
  transform: rotate(90deg);
}

.notable-case__details-content {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.notable-case__link {
  justify-self: start;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

.notable-case__link::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 8px;
  margin-left: 10px;
  background:
    linear-gradient(var(--red), var(--red)) left center / 18px 2px no-repeat,
    linear-gradient(45deg, transparent 46%, var(--red) 48% 58%, transparent 60%) right center / 8px 8px no-repeat;
  transition: transform 180ms ease;
}

.notable-case__link:hover::after,
.notable-case__link:focus-visible::after {
  transform: translateX(3px);
}

.projects-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 62px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  background: var(--paper);
  color: var(--ink);
}

.projects-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3rem;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px;
  background: rgba(17, 18, 20, 0.92);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__image {
  max-width: min(1180px, 100%);
  max-height: 82vh;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.image-lightbox__close,
.image-lightbox__control {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 18, 20, 0.82);
  color: var(--white);
  cursor: pointer;
}

.image-lightbox__close {
  top: 24px;
  right: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.image-lightbox__control {
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.image-lightbox__control::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.image-lightbox__control--prev {
  left: 24px;
}

.image-lightbox__control--prev::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.image-lightbox__control--next {
  right: 24px;
}

.image-lightbox__control--next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible,
.image-lightbox__control:hover,
.image-lightbox__control:focus-visible {
  background: rgba(230, 0, 0, 0.9);
}

.image-lightbox__count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.82);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.image-lightbox.is-single .image-lightbox__control,
.image-lightbox.is-single .image-lightbox__count {
  display: none;
}

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

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: center;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.about-hero__content {
  max-width: 780px;
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6vw, 5.4rem);
}

.about-hero__content p:not(.eyebrow) {
  max-width: 680px;
  color: #343a40;
  font-size: 1.06rem;
}

.about-hero__media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 4px;
  background: var(--charcoal);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 56px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.about-story__intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}

.about-story h2 {
  max-width: 520px;
  font-size: clamp(2.5rem, 4vw, 3.65rem);
}

.about-story__copy {
  display: grid;
  gap: 24px;
  max-width: 860px;
  color: #3f454b;
  font-size: 1.05rem;
}

.about-story__copy p {
  margin: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.about-pillars article {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 14px;
  padding: 34px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.about-pillars span {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
}

.about-pillars h3 {
  margin: 0;
  font-size: 1.35rem;
}

.about-pillars p {
  margin: 0;
  color: #d9dcdf;
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.about-image-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 4px;
  background: var(--white);
}

.about-image-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.about-image-grid figcaption {
  padding: 18px 20px;
  color: #4b535a;
  font-size: 0.96rem;
  font-weight: 700;
}

.about-cta {
  margin: 0;
}

.apply-page {
  background: var(--paper);
}

.apply-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: 64px;
  align-items: end;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 1), rgba(246, 246, 243, 0.9)),
    url("assets/field-framing-review.jpg") right center / cover no-repeat;
}

.apply-hero__content {
  max-width: 760px;
}

.apply-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 4.9rem;
}

.apply-hero__content p:not(.eyebrow) {
  max-width: 620px;
  color: #333a40;
  font-size: 1.06rem;
}

.apply-summary {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: rgba(17, 18, 20, 0.94);
  color: var(--white);
}

.apply-summary span {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

.apply-summary strong {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.apply-summary p {
  margin: 0;
  color: #d9dcdf;
  font-size: 0.95rem;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 56px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.apply-section--paper {
  background: var(--paper);
}

.apply-section__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.apply-section h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 3rem;
}

.apply-section__intro p:not(.eyebrow) {
  max-width: 520px;
  color: #3f454b;
}

.role-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.role-card,
.process-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 4px;
  background: #f7f7f4;
}

.role-card span,
.process-card span {
  margin-bottom: 34px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.role-card h3,
.process-card h3 {
  margin-bottom: 18px;
  font-size: 1.38rem;
}

.role-card p,
.process-card p {
  margin: 0;
  color: #4c5359;
  font-size: 0.95rem;
}

.application-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: 48px;
  align-items: start;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.application-panel__copy p:not(.eyebrow) {
  max-width: 520px;
  color: #3f454b;
}

.contact-page {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: end;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 1), rgba(246, 246, 243, 0.88)),
    url("assets/hero-apartment-profile-hardhat.png") right center / cover no-repeat;
}

.contact-hero__content {
  max-width: 660px;
}

.contact-hero h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 4.7rem;
}

.contact-hero__content p:not(.eyebrow) {
  max-width: 560px;
  color: #333a40;
  font-size: 1.06rem;
}

.urgent-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: rgba(17, 18, 20, 0.94);
  color: var(--white);
}

.urgent-card span,
.contact-method span {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

.urgent-card a {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.urgent-card__numbers {
  display: grid;
  gap: 8px;
}

.urgent-card p {
  margin: 0;
  color: #d9dcdf;
  font-size: 0.95rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.contact-method-grid {
  display: grid;
  gap: 18px;
}

.contact-method {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 4px;
  background: #f7f7f4;
}

.contact-method a,
.contact-method__numbers a {
  width: fit-content;
  font-size: 1.24rem;
  font-weight: 800;
}

.contact-method__numbers {
  display: grid;
  gap: 5px;
}

.contact-method p {
  margin: 0;
  color: #4c5359;
}

.contact-form,
.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  border-radius: 4px;
  background: var(--paper);
}

.contact-form__heading,
.contact-form__wide,
.contact-form .button,
.application-form__wide,
.application-form .button {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact-form__heading h2 {
  margin-bottom: 0;
  font-size: 2.55rem;
}

.contact-form label,
.application-form label {
  display: grid;
  gap: 9px;
  color: var(--charcoal);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid #cfd3d6;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: 1rem/1.45 Arial, Helvetica, sans-serif;
}

.contact-form input,
.contact-form select,
.application-form input,
.application-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea,
.application-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(224, 0, 0, 0.14);
  outline-offset: 1px;
}

.contact-form .button,
.application-form .button {
  width: fit-content;
  min-width: 190px;
  cursor: pointer;
}

.legal-page,
.error-page {
  background: var(--paper);
}

.legal-hero,
.error-hero {
  position: relative;
  isolation: isolate;
  padding: 94px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 0.98) 0%, rgba(246, 246, 243, 0.94) 46%, rgba(246, 246, 243, 0.66) 100%),
    url("assets/about-field-review.jpg") center / cover no-repeat;
}

.error-hero {
  display: grid;
  align-content: center;
  min-height: 560px;
}

.legal-hero h1,
.error-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
}

.legal-hero p:not(.eyebrow),
.error-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #353b42;
  font-size: 1.08rem;
  line-height: 1.7;
}

.thank-you-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-content: center;
  padding-top: clamp(88px, 8vw, 132px);
  padding-bottom: clamp(104px, 11vw, 164px);
}

.thank-you-hero h1 {
  margin-bottom: 28px;
}

.thank-you-hero p:not(.eyebrow) {
  max-width: 760px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 760px;
  margin-top: 42px;
}

.thank-you-actions .button {
  width: auto;
  min-width: 220px;
}

.error-hero .hero__actions {
  margin-top: 34px;
}

.legal-content {
  display: grid;
  gap: 24px;
  padding: 72px max(28px, calc((100vw - var(--max)) / 2)) 86px;
  background: var(--white);
}

.legal-section {
  max-width: 900px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-section p {
  margin: 0 0 14px;
  color: #3f454b;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
  color: #3f454b;
}

.legal-section li {
  line-height: 1.65;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 48px;
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 28px;
  background: #111214;
  color: var(--white);
}

.site-footer__brand p {
  max-width: 320px;
  margin: 24px 0 0;
  color: #d5d7d8;
  font-size: 0.94rem;
}

.footer-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: var(--white);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2,
.footer-contact span {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.site-footer__meta a {
  color: #d5d7d8;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: var(--white);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 16px;
  font-style: normal;
}

.footer-contact a[href^="tel"] {
  color: var(--white);
  font-size: 1.24rem;
  font-weight: 700;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9da3a8;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(210px, 1fr) auto auto;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 24px 54px rgba(17, 18, 20, 0.18);
  }

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

  .primary-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-call {
    gap: 5px;
    padding-left: 22px;
  }

  .header-call__numbers a {
    font-size: 0.98rem;
  }

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

  .emergency-panel,
  .projects-hero,
  .project-detail,
  .notable-projects,
  .about-hero,
  .about-story,
  .apply-hero,
  .apply-section,
  .application-panel,
  .contact-section,
  .trusted {
    grid-template-columns: 1fr;
  }

  .trusted__intro,
  .project-detail__content,
  .notable-projects__intro,
  .about-story__intro,
  .apply-section__intro {
    position: static;
  }

  .notable-case,
  .notable-case:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .notable-case:nth-child(even) .notable-case__media {
    order: 0;
  }

  .notable-case__media,
  .notable-case:nth-child(even) .notable-case__media {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

  .notable-case__media,
  .notable-case__media img,
  .notable-carousel__image-button {
    min-height: 300px;
  }

  .contact-hero,
  .apply-hero {
    grid-template-columns: 1fr;
  }

  .legal-hero,
  .error-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .thank-you-hero {
    padding-top: 84px;
    padding-bottom: 108px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 98px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 10px 16px 8px;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
  }

  .brand__name {
    font-size: 0.82rem;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 12px;
    border: 0;
    background: var(--ink);
    color: var(--white);
  }

  .header-call span {
    order: 2;
    color: var(--white);
    font-size: 0;
  }

  .header-call span::after {
    content: "24/7";
    color: var(--red);
    font-size: 0.72rem;
  }

  .header-call__numbers {
    order: 1;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-call__numbers a {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    width: 42px;
    height: 42px;
    gap: 4px;
  }

  .hero {
    min-height: 610px;
    padding: 68px 22px;
    background: var(--paper) url("assets/hero-video-poster.jpg") 64% center / cover no-repeat;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(246, 246, 243, 1) 0%, rgba(246, 246, 243, 0.98) 46%, rgba(246, 246, 243, 0.55) 100%);
  }

  .hero__video {
    object-position: 64% center;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .proof-strip,
  .split-section,
  .service-grid,
  .response-steps,
  .project-index,
  .project-media-grid,
  .notable-projects__list,
  .about-pillars,
  .about-image-grid,
  .role-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding: 0;
  }

  .logo-marquee {
    padding: 34px 0 38px;
  }

  .logo-marquee__heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .logo-marquee h2 {
    justify-self: start;
    max-width: 520px;
    font-size: 1.7rem;
    text-align: left;
  }

  .logo-card {
    width: 162px;
    height: 66px;
    padding: 10px 18px;
  }

  .logo-card img {
    max-height: 44px;
  }

  .split-section__text,
  .section-band,
  .emergency-panel,
  .service-area,
  .projects-hero,
  .project-detail,
  .projects-cta,
  .about-hero,
  .about-story,
  .about-image-grid,
  .contact-hero,
  .apply-hero,
  .legal-hero,
  .legal-content,
  .error-hero,
  .apply-section,
  .application-panel,
  .contact-section,
  .trusted,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .split-section__media {
    min-height: 380px;
    order: -1;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__meta {
    justify-content: flex-start;
  }

  .contact-form,
  .application-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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

  .service-area__note {
    align-items: flex-start;
    flex-direction: column;
  }

  .trusted__grid article {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
  }

  .trusted__grid p {
    grid-column: 2;
  }

  .projects-hero {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .projects-hero h1 {
    font-size: 3.2rem;
  }

  .project-detail {
    gap: 32px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .project-detail h2 {
    font-size: 2.28rem;
  }

  .project-media-grid figure,
  .project-placeholder {
    min-height: 230px;
  }

  .projects-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-cta h2 {
    font-size: 2.2rem;
  }

  .about-hero__media,
  .about-hero__media img {
    min-height: 340px;
  }

  .about-pillars article {
    min-height: 0;
  }

  .image-lightbox {
    padding: 76px 16px;
  }

  .image-lightbox__control {
    width: 42px;
    height: 42px;
  }

  .image-lightbox__control--prev {
    left: 14px;
  }

  .image-lightbox__control--next {
    right: 14px;
  }

  .apply-hero h1 {
    font-size: 3.2rem;
  }

  .legal-hero h1,
  .error-hero h1 {
    font-size: 3.2rem;
  }

  .apply-section h2 {
    font-size: 2.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .logo-marquee__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee__track.is-ready {
    animation: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand__name {
    max-width: 162px;
  }

  h1 {
    max-width: 330px;
    font-size: 3.22rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  .about-image-grid img {
    height: 240px;
  }

  .apply-hero h1 {
    font-size: 2.86rem;
  }

  .legal-hero h1,
  .error-hero h1 {
    font-size: 2.86rem;
  }

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

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .thank-you-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 96px;
  }

  .thank-you-actions {
    width: 100%;
    max-width: 340px;
    gap: 12px;
    margin-top: 32px;
  }

  .thank-you-actions .button {
    width: 100%;
    min-width: 0;
  }

  .service-card h3 {
    min-height: 0;
  }
}
