*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #f5c518;
  color: #4a3728;
}

.construction {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: 0 1.25rem max(1.25rem, 2.5vh);
  text-align: center;
}

.construction__header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4vh;
  min-height: 0;
}

.construction__logo {
  width: min(720px, 94vw);
  height: auto;
  max-height: 58vh;
  object-fit: contain;
}

.construction__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.construction__text {
  width: 100%;
}

.construction__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.construction__subtitle {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.125rem);
  opacity: 0.9;
}

.construction__footer {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.construction__footer-line {
  width: min(36rem, 78vw);
  margin: 0 0 1.35rem;
  border: none;
  border-top: 1px solid #4a3728;
  opacity: 0.4;
}

.construction__contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  font-style: normal;
}

.construction__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a3728;
  text-decoration: none;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.25;
  transition: opacity 0.15s ease;
}

.construction__link:hover,
.construction__link:focus-visible {
  opacity: 0.75;
  outline: 2px solid #4a3728;
  outline-offset: 3px;
}

.construction__icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}
