:root {
  color-scheme: light;
  --navy: #0f263d;
  --navy-soft: #183651;
  --beige: #f3ede2;
  --paper: #fbf8f1;
  --muted: #697684;
  --line: rgba(15, 38, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--navy);
  background:
    linear-gradient(120deg, rgba(15, 38, 61, 0.06), transparent 44%),
    linear-gradient(300deg, rgba(216, 200, 173, 0.44), transparent 48%),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.construction-page {
  display: grid;
  place-items: center;
  padding: 28px;
}

.construction {
  width: min(760px, 100%);
  padding: clamp(34px, 8vw, 78px);
  border-left: 4px solid var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(15, 38, 61, 0.10);
}

.construction__mark {
  width: min(188px, 46vw);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 1.12;
}

.lead {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.6vw, 23px);
  line-height: 1.78;
}

.construction__contact {
  display: grid;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.construction__contact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.construction__contact a {
  width: fit-content;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .construction-page {
    place-items: start center;
    padding: 18px;
  }

  .construction {
    padding: 28px 22px;
  }

  h1 {
    font-size: 38px;
  }
}
