.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;
}

.construction-page {
  background: var(--green-deep);
}

.construction-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(244, 242, 235, 0.9);
}

.construction-page .site-header__inner {
  grid-template-columns: auto 1fr auto;
}

.construction-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 30, 22, 0.92), rgba(9, 46, 33, 0.68) 46%, rgba(18, 109, 133, 0.16)),
    var(--hero-image) center / cover no-repeat;
}

.construction-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(9, 46, 33, 0.78), transparent);
  pointer-events: none;
}

.construction-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(126px, 18vh, 180px) 0 clamp(148px, 18vh, 190px);
}

.construction-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.construction-hero__lead {
  max-width: 760px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2.2vw, 25px);
}

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

.construction-facts {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.construction-facts span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-weight: 850;
}

.construction-facts small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.local-section {
  padding: clamp(66px, 8vw, 108px) 0;
  background:
    linear-gradient(90deg, rgba(242, 206, 47, 0.16), transparent 42%),
    #fbfaf5;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.local-grid h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.local-grid p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.construction-note {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 23, 19, 0.05);
}

.construction-note strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-note p {
  margin: 0;
  color: #27342d;
  font-size: 18px;
  font-weight: 720;
}

.preview-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 10px 16px;
  color: #fff;
  background: #111713;
  text-align: center;
  font-size: 14px;
  font-weight: 780;
}

@media (max-width: 980px) {
  .local-grid {
    grid-template-columns: 1fr;
  }

  .construction-page .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .construction-page .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 660px) {
  .construction-hero {
    min-height: 720px;
  }

  .construction-hero__content {
    padding-top: 130px;
    padding-bottom: 88px;
  }

  .construction-facts {
    display: none;
  }

  .construction-actions {
    display: grid;
    max-width: 260px;
  }
}
