:root {
  --red: #dc001b;
  --red-dark: #b90016;
  --ink: #171717;
  --ink-soft: #242424;
  --paper: #f6f6f5;
  --muted: #676767;
  --line: #dddddc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

main {
  min-height: 60vh;
}

.shell {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
}

.contact-bar {
  min-height: 32px;
  color: #ededed;
  background: linear-gradient(90deg, #141414, #1c1c1c 55%, #111);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.contact-inner {
  min-height: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
}

.contact-inner a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color 160ms ease;
}

.contact-inner a:hover,
.contact-inner a:focus-visible {
  color: #fff;
}

.nav-shell {
  --nav-shell-height: 132px;
  --nav-texture-height: calc(var(--nav-shell-height) + 24px);
  height: var(--nav-shell-height);
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04)),
    url("metal.png");
  background-position: left top;
  background-size: 100vw var(--nav-texture-height);
  background-repeat: no-repeat;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 -1px 0 rgba(0, 0, 0, .22) inset,
    0 5px 18px rgba(0, 0, 0, .28);
}

.nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -23px;
  width: max(390px, calc((100vw - 1360px) / 2 + 310px));
  height: 24px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04)),
    url("metal.png");
  background-position: left bottom;
  background-size: 100vw var(--nav-texture-height);
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, calc(100% - 27px) 100%, 0 100%);
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .22));
}

.nav-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  width: 268px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  transform: translateY(11px);
}

.brand img {
  width: 260px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .14));
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 37px);
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  color: #1d1d1d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

body:has(.route-start) .desktop-nav .nav-route-start::after,
body:has(.route-referenzen) .desktop-nav .nav-route-referenzen::after,
body:has(.route-ueber-uns) .desktop-nav .nav-route-ueber-uns::after,
body:has(.route-karriere) .desktop-nav .nav-route-karriere::after,
body:has(.route-kontakt) .desktop-nav .nav-route-kontakt::after {
  right: 0;
}

body:has(.route-start) .desktop-nav .nav-route-start,
body:has(.route-referenzen) .desktop-nav .nav-route-referenzen,
body:has(.route-ueber-uns) .desktop-nav .nav-route-ueber-uns,
body:has(.route-karriere) .desktop-nav .nav-route-karriere,
body:has(.route-kontakt) .desktop-nav .nav-route-kontakt {
  color: var(--red);
}

.route-marker {
  display: none;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #eb1028, #c90018);
  box-shadow: 0 3px 8px rgba(165, 0, 19, .24);
}

.nav-cta {
  min-width: 153px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: #f10a25;
  transform: translateY(-1px);
}

.button-outline {
  color: #fff;
  border-color: #777;
  background: rgba(10, 10, 10, .24);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: #aaa;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 475px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0A0A0A;
}

.hero::after,
.page-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, .04), transparent 29%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 4px);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 33%;
  background:
    linear-gradient(90deg, #0A0A0A 0%, rgba(10, 10, 10, .94) 16%, rgba(10, 10, 10, .49) 44%, rgba(7, 7, 7, .12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .07), rgba(0, 0, 0, .42)),
    url("hero-electrical.jpg") center 41% / cover no-repeat;
  filter: contrast(1.12) saturate(.78);
}

.hero-inner {
  min-height: 475px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: 54%;
  padding-top: 89px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(45px, 3.65vw, 60px);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: .99;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.hero-lead {
  width: 470px;
  max-width: 90%;
  margin: 24px 0 0;
  color: #efefef;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

.hero-actions .button {
  min-width: 217px;
}

.quality-badge {
  position: absolute;
  top: 184px;
  right: 23px;
  width: 132px;
  min-height: 141px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 19px 11px 29px;
  color: #fff;
  background: linear-gradient(180deg, #ef0b26, #ca0018);
  clip-path: polygon(0 0, 100% 0, 100% 81%, 50% 100%, 0 81%);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
  text-transform: uppercase;
}

.services-section,
.content-section,
.legal-section {
  padding: 82px 0 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(246, 246, 245, .98)),
    #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}

.section-kicker {
  margin-bottom: 10px;
  font-size: 12px;
}

.section-heading h2,
.prose-block h2,
.contact-details h2,
.contact-panel h2,
.dark-cta h2,
.application-section h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading > p,
.prose-block > p,
.contact-details > p,
.contact-panel > p,
.application-section p {
  margin: 0;
  color: #5b5b5b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #4a4a4a;
  background: linear-gradient(180deg, #353535, #222);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .13);
}

.service-card {
  min-height: 235px;
  position: relative;
  padding: 34px 25px 29px;
  color: #fff;
}

.service-card + .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  bottom: 31px;
  width: 1px;
  background: #575757;
}

.service-icon,
.project-card svg,
.value-grid svg,
.benefit-grid svg,
.legal-grid article > svg {
  color: var(--red);
}

.service-card h2,
.project-card h2,
.value-grid h2,
.benefit-grid h2,
.legal-grid h2 {
  margin: 22px 0 11px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p,
.project-card p,
.value-grid p,
.benefit-grid p,
.legal-grid p,
.legal-grid address {
  margin: 0;
  color: #c7c7c7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  line-height: 1.62;
}

.service-cta {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 20px 25px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #f0f0ef;
}

.service-cta > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-cta > div svg {
  color: var(--red);
}

.text-link {
  margin-left: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 16px;
  border: 1px solid #777;
  color: #222;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

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

.page-intro {
  min-height: 338px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0A0A0A;
}

.page-intro-photo {
  position: absolute;
  inset: 0 0 0 46%;
  background:
    linear-gradient(90deg, #0A0A0A, rgba(10, 10, 10, .56) 60%, rgba(10, 10, 10, .26)),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .42)),
    url("hero-electrical.jpg") center 43% / cover no-repeat;
  filter: contrast(1.13) saturate(.7);
}

.page-intro-inner {
  min-height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-intro h1 {
  max-width: 760px;
  font-size: clamp(39px, 3.2vw, 52px);
}

.page-intro-inner > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: #d8d8d8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

.project-card {
  min-height: 272px;
  padding: 34px;
  border-top: 4px solid var(--red);
  background: #252525;
  color: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card-top span {
  color: #bbb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-card h2 {
  margin-top: 28px;
  font-size: 20px;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.project-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e1e1e1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.project-card li svg {
  color: var(--red);
}

.dark-cta,
.application-section {
  color: #fff;
  background: #1c1c1c;
}

.dark-cta-inner,
.application-grid {
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dark-cta h2,
.application-section h2 {
  max-width: 720px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: center;
}

.prose-block > p {
  max-width: 720px;
  margin-top: 18px;
}

.prose-block .text-link {
  margin: 28px 0 0;
}

.stats-stack {
  display: grid;
  gap: 15px;
}

.stats-stack article {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 23px 28px;
  border: 1px solid var(--line);
  background: #f3f3f2;
}

.stats-stack svg {
  color: var(--red);
}

.stats-stack strong,
.stats-stack span {
  display: block;
}

.stats-stack strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
}

.stats-stack span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.values-section {
  padding: 80px 0 90px;
  color: #fff;
  background: #202020;
}

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

.value-grid article,
.benefit-grid article {
  min-height: 190px;
  padding: 31px;
  border: 1px solid #4a4a4a;
  background: #292929;
}

.value-grid p,
.benefit-grid p {
  color: #c7c7c7;
}

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

.benefit-grid article {
  color: #fff;
}

.application-grid > div {
  max-width: 800px;
}

.application-section p {
  max-width: 660px;
  margin-top: 14px;
  color: #c9c9c9;
}

.application-section .button {
  min-width: 245px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

.contact-details > p {
  max-width: 650px;
  margin-top: 16px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 34px;
}

.contact-list > a,
.contact-list > div {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #f2f2f1;
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--red);
}

.contact-list small,
.contact-list strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-list small {
  margin-bottom: 7px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 13px;
  line-height: 1.45;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--red);
}

.contact-panel {
  padding: 42px;
  color: #fff;
  background: #242424;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.contact-panel > p {
  margin-top: 17px;
  color: #c9c9c9;
}

.contact-panel .button {
  width: 100%;
  margin-top: 25px;
}

.contact-panel .button + .button {
  margin-top: 12px;
}

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

.legal-grid article {
  min-height: 220px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #f1f1f0;
}

.legal-grid h2 {
  margin: 2px 0 17px;
  font-size: 17px;
}

.legal-grid p,
.legal-grid address {
  color: #555;
  font-size: 13px;
  line-height: 1.75;
}

.legal-grid a {
  color: var(--red-dark);
}

.site-footer {
  color: #d1d1d1;
  background: #141414;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr 1fr;
  gap: 70px;
  padding: 58px 0 48px;
}

.footer-brand img {
  width: 280px;
  height: 132px;
  display: block;
  margin-left: -11px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #aaa;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
}

.footer-contact span,
.footer-contact a {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  line-height: 1.5;
}

.footer-contact svg {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid #333;
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.footer-bottom-inner {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

:focus-visible {
  outline: 3px solid #ff1834;
  outline-offset: 3px;
}

@media (max-width: 1190px) {
  .shell {
    width: min(100% - 42px, 1080px);
  }

  .brand {
    width: 222px;
  }

  .brand img {
    width: 218px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a:not(.nav-cta) {
    font-size: 10px;
  }

  .nav-cta {
    min-width: 132px;
    padding-inline: 16px;
  }

  .service-card {
    padding-inline: 19px;
  }

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

@media (max-width: 950px) {
  .nav-shell {
    --nav-shell-height: 106px;
  }

  .brand {
    width: 216px;
    height: 100px;
  }

  .brand img {
    width: 210px;
    height: 96px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    min-width: 112px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    color: #fff;
    background: var(--red);
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    width: 240px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 13px;
    color: #171717;
    background:
      linear-gradient(rgba(255, 255, 255, .12), rgba(255, 255, 255, .12)),
      url("metal.png") center / cover no-repeat;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .27);
  }

  .mobile-menu nav a {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  body:has(.route-start) .mobile-menu .nav-route-start,
  body:has(.route-referenzen) .mobile-menu .nav-route-referenzen,
  body:has(.route-ueber-uns) .mobile-menu .nav-route-ueber-uns,
  body:has(.route-karriere) .mobile-menu .nav-route-karriere,
  body:has(.route-kontakt) .mobile-menu .nav-route-kontakt {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }

  .mobile-menu nav .nav-cta {
    margin-top: 10px;
    color: #fff;
  }

  .hero-photo {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(20, 20, 20, .97), rgba(20, 20, 20, .67)),
      linear-gradient(180deg, transparent, rgba(0, 0, 0, .55)),
      url("hero-electrical.jpg") center / cover no-repeat;
  }

  .hero-copy {
    width: 78%;
  }

  .quality-badge {
    right: 0;
    transform: scale(.84);
    transform-origin: right center;
  }

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

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

  .service-card + .service-card::before {
    display: none;
  }

  .service-card {
    min-height: 200px;
    border: 1px solid #484848;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .about-page-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-grid {
    gap: 50px;
  }

  .contact-page-grid {
    gap: 35px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, 560px);
  }

  .contact-inner {
    justify-content: center;
    padding-block: 8px;
    font-size: 10px;
  }

  .contact-inner a:last-child {
    display: none;
  }

  .nav-shell::after {
    width: 260px;
  }

  .brand {
    width: 200px;
  }

  .brand img {
    width: 195px;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(32px, 10.2vw, 44px);
    letter-spacing: -.01em;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-actions {
    width: min(100%, 345px);
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quality-badge {
    display: none;
  }

  .services-section,
  .content-section,
  .legal-section {
    padding-block: 65px 72px;
  }

  .section-heading h2,
  .prose-block h2,
  .contact-details h2,
  .contact-panel h2,
  .dark-cta h2,
  .application-section h2 {
    font-size: 25px;
  }

  .service-grid,
  .project-grid,
  .benefit-grid,
  .contact-list,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 188px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .service-cta .text-link {
    margin: 5px 0 0;
  }

  .page-intro,
  .page-intro-inner {
    min-height: 335px;
  }

  .page-intro-photo {
    inset: 0;
    opacity: .4;
  }

  .page-intro h1 {
    font-size: 39px;
  }

  .project-card,
  .contact-panel {
    padding: 29px 24px;
  }

  .dark-cta-inner,
  .application-grid {
    min-height: 310px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .application-section .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 15px;
  }
}
