:root {
  --bg: #f4f8fb;
  --paper: #ffffff;
  --ink: #14212d;
  --muted: #5b6c7b;
  --line: #d7e3ec;
  --accent: #1769aa;
  --accent-2: #18a6a0;
  --deep: #102f4a;
  --soft: #eaf3f9;
  --shadow: 0 18px 46px rgba(16, 47, 74, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(24, 30, 38, 0.1);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.topbar strong {
  color: var(--ink);
  font-weight: 700;
}

.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a {
  border-radius: 999px;
  color: var(--deep);
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus {
  background: var(--soft);
  color: var(--accent);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  min-height: 44px;
  padding: 12px 18px;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 105, 170, 0.26);
}

.button-light {
  background: #fff;
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.icon-button {
  width: 44px;
  height: 44px;
  background: var(--soft);
  color: var(--deep);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(440px, calc(100vh - 220px), 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0b2236;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 20, 0.9), rgba(12, 16, 20, 0.62) 48%, rgba(12, 16, 20, 0.28)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(244, 248, 251, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-2);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.fact {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.fact b {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.facts-strip {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  background: var(--deep);
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.page-title p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.service-card,
.product-card,
.location-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(24, 30, 38, 0.06);
}

.service-card {
  overflow: hidden;
}

.service-card figure,
.product-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--soft);
}

.service-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content,
.product-card-content,
.location-card {
  padding: 22px;
}

.service-card h3,
.product-card h3,
.location-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.service-card p,
.product-card p,
.location-card p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: var(--deep);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.step b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
}

.step strong {
  display: block;
  margin-bottom: 4px;
}

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

.band {
  background: var(--deep);
  color: #fff;
}

.band .section-kicker {
  color: var(--accent-2);
}

.band .section-head p,
.band .product-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-actions,
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.band .carousel-controls .icon-button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-controls .icon-button:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

.product-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.product-card {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  scroll-snap-align: start;
}

.product-card figure {
  background: #fff;
}

.product-card img {
  padding: 10px;
  object-fit: contain;
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card-content p {
  margin-bottom: 0;
}

.product-brand {
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  color: #fff;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--deep);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 9px 13px;
}

.gallery-filter.is-active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.gallery-featured-section {
  padding-bottom: 18px;
}

.gallery-featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  min-height: 500px;
}

.gallery-featured-card {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff;
  text-decoration: none;
}

.gallery-featured-card-primary {
  grid-row: 1 / 3;
}

.gallery-featured-card img,
.gallery-featured-content {
  grid-area: 1 / 1;
}

.gallery-featured-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-featured-card:hover img,
.gallery-featured-card:focus img {
  transform: scale(1.035);
}

.gallery-featured-content {
  align-self: end;
  padding: 72px 20px 20px;
  background: linear-gradient(0deg, rgba(5, 14, 22, 0.88), rgba(5, 14, 22, 0));
}

.gallery-featured-content strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.gallery-featured-content > span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.gallery-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-filter-group {
  min-width: 0;
}

.gallery-filter-group > span,
.gallery-filter-group > span {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gallery-result-count {
  min-width: 90px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

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

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

.gallery-item {
  display: grid;
  width: 100%;
  min-height: 245px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: var(--deep);
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  text-decoration: none;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-case-card {
  min-height: 330px;
}

.gallery-case-card img {
  min-height: 330px;
}

a.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.04);
}

.gallery-caption {
  grid-area: 1 / 1;
  align-self: end;
  padding: 56px 14px 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-case-card .gallery-caption {
  padding: 92px 18px 18px;
}

.gallery-case-card .gallery-caption > strong {
  margin: 8px 0 4px;
  font-size: 21px;
  line-height: 1.16;
}

.gallery-case-meta {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-case-meta span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-empty {
  padding: 34px 0;
  color: var(--muted);
  text-align: center;
}

.project-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.project-lead-image {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--deep);
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}

.project-lead-image img,
.project-lead-image > span {
  grid-area: 1 / 1;
}

.project-lead-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.project-lead-image > span {
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 80px 20px 20px;
  background: linear-gradient(0deg, rgba(5, 14, 22, 0.8), rgba(5, 14, 22, 0));
}

.project-lead-image > span span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.project-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.project-summary > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-summary h3 {
  margin: 10px 0 0;
  font-size: 27px;
  line-height: 1.15;
}

.project-summary p {
  color: var(--muted);
}

.project-summary .button {
  align-self: flex-start;
  margin-top: 8px;
}

.project-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 2px 0 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.project-thumbnail {
  position: relative;
  flex: 0 0 150px;
  width: 150px;
  height: 96px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  background: var(--deep);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.project-thumbnail:hover,
.project-thumbnail:focus {
  border-color: var(--accent);
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-thumbnail span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  min-width: 25px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(5, 14, 22, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
}

.faq-item summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.location-card p {
  margin: 10px 0;
}

.cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

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

.page-hero {
  padding: 70px 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-image {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(247, 250, 253, 0.93) 0%, rgba(247, 250, 253, 0.82) 55%, rgba(247, 250, 253, 0.68) 100%),
    var(--page-hero-image) center 46% / cover no-repeat;
}

.page-hero-image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(11, 52, 77, 0.08));
}

.page-title {
  max-width: 900px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.content-card {
  padding: 28px;
}

.content-card h2,
.content-card h3 {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.service-detail > .section-kicker {
  margin-bottom: 8px;
}

.service-detail-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.service-detail-block h3 {
  margin-bottom: 10px;
}

.content-card figure {
  margin: 0 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.content-card figure img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.sidebar {
  display: grid;
  gap: 14px;
}

.sidebar .content-card {
  padding: 20px;
}

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

.legacy-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 14px;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.legacy-link:hover,
.legacy-link:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  padding: 42px 0;
  background: #0b2236;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
  color: #fff;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 100;
  padding: 20px;
  background: rgba(7, 9, 12, 0.88);
}

body.lightbox-active {
  overflow: hidden;
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  margin: 0;
  width: min(1120px, calc(100% - 128px));
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #0b0d10;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: #fff;
}

.lightbox-counter {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-variant-numeric: tabular-nums;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.legal-document h2 {
  margin-top: 30px;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document h3 {
  margin-top: 24px;
}

.legal-date {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
  }

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

  .nav a {
    border-radius: var(--radius);
    background: var(--soft);
  }

  .hero {
    min-height: clamp(430px, calc(100vh - 180px), 540px);
  }

  .hero-facts,
  .service-grid,
  .gallery-grid,
  .legacy-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-featured-grid {
    min-height: 430px;
  }

  .gallery-toolbar {
    grid-template-columns: 1fr auto;
  }

  .split,
  .cta,
  .content-layout,
  .project-viewer {
    grid-template-columns: 1fr;
  }

  .project-summary {
    border-top: 3px solid var(--accent);
    border-left: 0;
  }

  .product-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar {
    display: none;
  }

  .brand img {
    width: 124px;
  }

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

  .actions .button {
    width: 100%;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: clamp(430px, calc(100vh - 160px), 560px);
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(12, 16, 20, 0.76), rgba(12, 16, 20, 0.9)),
      var(--hero-image) center / cover no-repeat;
  }

  .hero-inner {
    padding: 34px 0 42px;
  }

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

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-facts,
  .service-grid,
  .gallery-grid,
  .locations,
  .footer-grid,
  .legacy-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .gallery-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .gallery-featured-card,
  .gallery-featured-card-primary {
    grid-row: auto;
    min-height: 260px;
  }

  .gallery-featured-content strong {
    font-size: 21px;
  }

  .gallery-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .gallery-result-count {
    margin: 0;
    text-align: left;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    margin-inline: -11px;
    padding: 0 11px 6px;
    overflow-x: auto;
  }

  .gallery-filter {
    flex: 0 0 auto;
  }

  .gallery-case-card,
  .gallery-case-card img {
    min-height: 300px;
  }

  .project-lead-image,
  .project-lead-image img {
    min-height: 360px;
  }

  .project-summary {
    padding: 22px;
  }

  .project-thumbnail {
    flex-basis: 124px;
    width: 124px;
    height: 82px;
  }

  .section {
    padding: 58px 0;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 260px;
  }

  .lightbox {
    padding: 72px 11px 18px;
  }

  .lightbox figure {
    width: 100%;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.18);
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox figcaption {
    padding: 0 54px;
    font-size: 13px;
  }

  .cta {
    padding: 22px;
  }

  .section-actions {
    width: 100%;
    justify-content: space-between;
  }

  .product-card {
    flex-basis: min(86%, 330px);
  }

}
