:root {
  --black: #0b0b0a;
  --black-2: #151512;
  --text: #171713;
  --muted: #6d6b63;
  --paper: #f4f1ea;
  --paper-2: #ebe7dc;
  --white: #ffffff;
  --line: rgba(23, 23, 19, 0.12);
  --line-invert: rgba(255, 255, 255, 0.15);
  --orange: #f26a21;
  --orange-dark: #b84612;
  --green: #68715b;
  --radius: 4px;
  --container: 1240px;
  --font: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pixel: "Pixelify Sans", "Geist", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0.35em;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(4.2rem, 10.8vw, 11rem);
}

h2 {
  max-width: 980px;
  font-size: clamp(2.65rem, 5.7vw, 6rem);
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

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

.container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  z-index: 999;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
}

.line-wrapper {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1.1fr;
  pointer-events: none;
  z-index: 0;
}

.line-wrapper span {
  border-left: 1px solid var(--line);
}

.line-wrapper span:last-child {
  border-right: 1px solid var(--line);
}

.line-wrapper.is-invert span,
.hero .line-wrapper span {
  border-color: var(--line-invert);
}

.hero > .line-wrapper.is-hero {
  bottom: auto;
  height: 54vh;
  min-height: 520px;
  max-height: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand,
.custom-logo-link,
.brand-with-file {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
}

.brand {
  gap: 12px;
  min-width: 230px;
}

.brand-with-file {
  min-width: 0;
}

.brand-with-file img {
  width: auto;
  max-width: 72px;
  max-height: 64px;
  border-radius: 6px;
  object-fit: contain;
}

.custom-logo-link img {
  width: auto;
  max-width: 188px;
  max-height: 46px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--orange);
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  justify-self: end;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-menu a:hover,
.site-menu .current-menu-item > a {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin-block: 5px;
  background: var(--black);
}

.btn,
button.btn,
.button-arrow,
.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
  text-decoration: none;
}

.btn-primary,
.button-arrow {
  gap: 10px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
}

.button-arrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
}

.btn-primary:hover,
.button-arrow:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-secondary,
.btn-outline,
.button-link {
  padding: 0.78rem 1rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.button-link:hover,
.btn-secondary:hover,
.btn-outline:hover {
  color: var(--orange-dark);
}

.btn-small {
  min-height: 38px;
  padding: 0.6rem 0.82rem;
  font-size: 0.9rem;
}

.pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-title-row {
  display: flex;
  min-height: 54vh;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 96px 46px;
}

.hero-title-row .pill {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-title-row h1 {
  margin-bottom: 0;
  color: var(--white);
}

.pixel-title {
  font-family: var(--pixel);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.pixel-title span {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  animation:
    pixel-reveal 760ms steps(14, end) forwards,
    pixel-pulse 2600ms steps(2, end) infinite;
  animation-delay: calc(var(--i) * 170ms), calc(1050ms + var(--i) * 120ms);
  will-change: clip-path, opacity, text-shadow;
}

@keyframes pixel-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateY(0.08em);
  }

  18% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pixel-pulse {
  0%,
  86%,
  100% {
    text-shadow: none;
  }

  88% {
    text-shadow: 0.08em 0 rgba(242, 106, 33, 0.85), -0.04em 0 rgba(255, 255, 255, 0.38);
  }

  92% {
    text-shadow: -0.06em 0 rgba(242, 106, 33, 0.72), 0.04em 0 rgba(255, 255, 255, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pixel-title span {
    animation: none;
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}

.hero-media-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--text);
}

.hero-media-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.35fr) minmax(180px, 0.42fr);
  gap: 30px;
  align-items: end;
  padding-block: 50px;
}

.hero-copy {
  align-self: start;
}

.hero-copy p {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image-wrap {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.hero-picture,
.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-index {
  display: grid;
  align-self: stretch;
  gap: 10px;
}

.hero-index a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-weight: 500;
}

.hero-index a:hover {
  color: var(--orange-dark);
}

.hero-index span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-stat-row {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat-row div {
  padding: 18px 18px 16px 0;
}

.hero-stat-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
}

.hero-stat-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid > div {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 28px;
}

.metric-number {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.metric-grid strong {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 0.98;
}

.metric-grid span:last-child {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: 104px;
  background: var(--paper);
}

.band {
  background: var(--paper-2);
}

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

.section-heading,
.split-heading {
  margin-bottom: 44px;
}

.section-heading p:not(.pill),
.split-heading > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 46px;
  align-items: end;
}

.compact {
  text-align: center;
}

.compact h2,
.compact p {
  margin-inline: auto;
}

.photo-rail {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.photo-tile {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.photo-tile-1,
.photo-tile-3 {
  grid-row: span 2;
}

.photo-tile-picture,
.photo-tile-picture img {
  width: 100%;
  height: 100%;
}

.photo-tile-picture img {
  object-fit: cover;
}

.card-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card,
.post-card,
.safety-grid article,
.quote-panel,
.contact-panel,
.service-detail,
.faq-list details {
  background: var(--paper);
}

.service-card,
.post-card {
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
}

.service-card-media,
.post-card-media,
.post-card > .post-card-picture {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.service-card-picture,
.service-card-picture img,
.post-card-picture,
.post-card-picture img,
.post-card-media > img {
  width: 100%;
  height: 100%;
}

.service-card-picture img,
.post-card-picture img,
.post-card-media > img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .service-card-picture img,
.post-card:hover .post-card-picture img,
.post-card:hover .post-card-media > img {
  transform: scale(1.035);
}

.service-card-media::after,
.post-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent);
}

.service-card-media span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.service-card-body,
.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.post-card-body h2,
.post-card-body h3 {
  max-width: none;
  font-size: clamp(1.65rem, 2vw, 2.65rem);
  line-height: 1.06;
}

.service-card-body p,
.post-card-body p {
  flex: 1;
}

.service-card ul,
.check-list,
.footer-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--muted);
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.service-card-body > a,
.post-card-body > a,
.footer-link {
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.66fr);
  align-items: start;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  align-items: center;
}

.step-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.step-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
}

.step-list span {
  color: var(--orange-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.step-list p {
  margin: 0;
}

.quote-panel,
.contact-panel {
  padding: 26px;
  border: 1px solid var(--line);
}

.quote-panel.wide {
  box-shadow: none;
}

.quote-form {
  display: grid;
  gap: 14px;
}

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

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--text);
  padding: 10px 12px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.hp-field {
  position: absolute;
  left: -10000px;
}

.quote-message {
  display: none;
  margin: 0;
  padding: 10px 12px;
  font-weight: 500;
}

.quote-message.is-visible {
  display: block;
}

.quote-message-success {
  background: #e5efe2;
  color: #274226;
}

.quote-message-error {
  background: #f8ded9;
  color: #7a2017;
}

.coverage-map {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 23, 19, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.coverage-map span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
}

.safety-band {
  border-block: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 1px;
  max-width: 920px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--text);
  font-weight: 600;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 112px 72px;
  background: var(--black);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}

.service-detail-media {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.service-detail-picture,
.service-detail-picture img {
  width: 100%;
  height: 100%;
}

.service-detail-picture img {
  object-fit: cover;
}

.service-detail-media span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
}

.service-detail-copy {
  align-self: center;
  padding-block: 26px;
}

.service-detail ul {
  align-self: center;
  margin: 0 24px 0 0;
  padding: 18px;
  background: var(--paper-2);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.safety-grid article {
  padding: 24px;
}

.contact-panel .big {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-list a {
  color: var(--orange-dark);
  font-weight: 600;
}

.single-post .entry-content,
.page-content .entry-content {
  font-size: 1.06rem;
}

.entry-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.3rem;
}

.entry-content li {
  margin-bottom: 0.45rem;
}

.post-meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.pagination-wrap {
  margin-top: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid var(--line);
}

.page-numbers.current {
  background: var(--black);
  color: var(--white);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: 66px 28px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .brand,
.site-footer .brand-copy span {
  color: var(--white);
}

.site-footer .brand-mark {
  background: var(--white);
  color: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line-invert);
}

.footer-bottom p {
  margin: 0;
}

.footer-menu {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

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

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-menu {
    display: grid;
    gap: 6px;
  }

  .site-menu a {
    padding: 12px;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-media-grid,
  .split,
  .split.reverse,
  .split-heading,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-index a {
    min-height: 64px;
    padding: 12px;
  }

  .hero-stat-row {
    grid-column: 1;
  }

  .card-grid,
  .post-grid,
  .safety-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-copy,
  .service-detail ul {
    margin: 0;
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand,
  .brand-with-file {
    min-width: 0;
  }

  .brand-with-file img {
    max-width: 58px;
    max-height: 58px;
  }

  .custom-logo-link img {
    max-width: 142px;
  }

  .brand-copy span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .line-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .line-wrapper span:nth-child(n + 3) {
    display: none;
  }

  .hero > .line-wrapper.is-hero {
    height: 46vh;
    min-height: 400px;
    max-height: 580px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.15rem);
    line-height: 1;
  }

  .pixel-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .pixel-title span {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .hero-title-row {
    min-height: 46vh;
    padding-block: 72px 32px;
  }

  .hero-media-grid {
    min-width: 0;
    padding-block: 32px;
  }

  .hero-copy,
  .hero-actions,
  .hero-index,
  .hero-stat-row {
    min-width: 0;
    width: 100%;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-image-wrap {
    min-width: 0;
    min-height: 300px;
  }

  .hero-actions {
    display: grid;
  }

  .button-arrow,
  .button-link,
  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-index,
  .hero-stat-row,
  .metric-grid,
  .card-grid,
  .post-grid,
  .safety-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-index a {
    border-right: 0;
  }

  .hero-stat-row div {
    border-right: 0;
    border-bottom: 0;
  }

  .metric-grid > div {
    border: 0;
  }

  .photo-rail {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-tile,
  .photo-tile-1,
  .photo-tile-2,
  .photo-tile-3 {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding-block: 70px;
  }

  .page-hero {
    padding-block: 86px 56px;
  }

  .quote-panel,
  .contact-panel,
  .safety-grid article {
    padding: 20px;
  }

  .coverage-map {
    min-height: 240px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .metric-grid > div {
    padding: 22px;
  }
}
