.page-installations {
  background: rgb(253 253 251);
  color: rgb(var(--zoa-dark));
}

.container {
  width: min(var(--max-width), 100% - 56px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid rgb(225 230 224);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgb(var(--zoa-slate));
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgb(76 145 96);
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(76 145 96);
}

.gallery-hero {
  padding: 110px 0 86px;
  background: linear-gradient(180deg, rgb(250 247 240) 0%, rgb(253 253 251) 100%);
}

.gallery-hero__inner {
  max-width: 820px;
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.gallery-hero p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.62;
  color: rgb(var(--zoa-slate));
}

.hero-link {
  display: inline-flex;
  margin-top: 22px;
  color: rgb(36 121 63);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 0 0 110px;
}

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

.gallery-item {
  margin: 0;
  background: rgb(255 255 255);
  border: 1px solid rgb(228 232 227);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03) brightness(1.01);
}

.gallery-item__meta {
  padding: 18px 18px 20px;
}

.gallery-item h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.gallery-item p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgb(var(--zoa-slate));
}

.site-footer {
  border-top: 1px solid rgb(226 231 224);
  padding: 30px 0 38px;
  color: rgb(var(--zoa-slate));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.media-credit {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgb(120 128 122);
}

@media (max-width: 920px) {
  .gallery-hero {
    padding: 86px 0 70px;
  }

  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), 100% - 30px);
  }
}
