:root {
  color-scheme: light;
  --bg-base: rgb(253, 253, 253);
  --text-main: #1a2330;
  --text-muted: #7b8088;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg-base);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 24px 88px;
}

.construction-image {
  display: block;
  width: min(74vw, 1040px);
  max-height: 72vh;
  height: auto;
  object-fit: contain;
}

.site-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 24px 24px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  font-family: "Apple Braille", Arial, Helvetica, sans-serif;
}

@media (max-width: 820px) {
  .hero {
    padding: 96px 20px 112px;
  }

  .construction-image {
    width: min(92vw, 760px);
    max-height: 66vh;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    font-size: 0.74rem;
    text-align: center;
  }
}
