:root {
  --sand: #c8b5a4;
  --overlay: rgba(22, 16, 12, 0.52);
  --text: #ffffff;
  --status-text: #0d0d0d;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--sand);
  color: var(--text);
}

p {
  font-size: 1.2rem;
  font-weight: 500;
}

.construction-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  position: relative;
  background-image: url("assets/hero-img.jpeg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.48), var(--overlay));
  z-index: -1;
}

.hero__inner {
  min-height: min(880px, calc(100vh - 130px));
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero__logo {
  width: min(520px, 80vw);
  height: auto;
  opacity: 0.6 !important;
  margin-top: clamp(20px, 8vh, 90px);
  animation: revealUp 1s ease-out both;
}

.info-panel {
  width: min(1300px, 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 3rem;
  margin-bottom: clamp(14px, 4vh, 56px);
  animation: revealUp 1s 0.2s ease-out both;
}

.info-panel__block {
  font-size: clamp(28px, 1.95vw, 43px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.info-panel__block--contact {
  max-width: 650px;
}

.info-panel__block--services {
  max-width: 520px;
}

.info-panel__block.info-panel__block--services {
  font-size: 1rem;
}

.info-panel__line {
  margin: 0;
}

.info-panel p {
  font-size: 1rem;
}

.info-panel__line + .info-panel__line {
  margin-top: 0.18em;
}

.info-panel__line--strong {
  font-weight: 500;
}

.status-banner {
  background-color: var(--sand);
  color: var(--status-text);
  text-align: center;
  padding: clamp(22px, 2vw, 30px) 14px;
  animation: revealUp 0.9s 0.35s ease-out both;
}

.status-banner h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1001px) {
  .hero__inner {
    position: relative;
    justify-content: flex-end;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hero__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30vw;
    margin: 0;
    transform: translate(-50%, -50%);
    animation: none;
  }
}

@media (max-width: 1000px) {
  .hero__inner {
    min-height: min(900px, calc(100vh - 120px));
    gap: 18px;
    justify-content: flex-start;
  }

  .hero__logo {
    width: min(500px, 80vw);
    margin-top: clamp(18px, 7vh, 44px);
    margin-bottom: clamp(8px, 4vh, 24px);
  }

  .info-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    gap: 18px;
    padding: clamp(18px, 4vw, 30px);
    padding-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(18, 14, 11, 0.18);
    backdrop-filter: blur(1px);
  }

  .info-panel__block {
    font-size: clamp(22px, 4.4vw, 36px);
    max-width: none;
  }

  .status-banner h1 {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 560px) {
  .hero {
    background-position: 58% center;
  }

  .hero__inner {
    min-height: calc(100vh - 105px);
    padding: 14px 0 0;
    justify-content: center;
    gap: 28px;
  }

  .hero__logo {
    width: min(279px, 70.2vw);
    margin-top: clamp(6px, 4.4vh, 20px);
  }

  .info-panel {
    width: calc(100% - 2px);
    margin: 0 auto;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 0;
    padding: 18px 12px 30px;
    padding-top: 3rem;
    gap: 3rem;
  }

  .info-panel__block {
    font-size: clamp(16px, 6.8vw, 29px);
    line-height: 1.34;
  }

  .status-banner {
    padding: 16px 12px;
  }

  .status-banner h1 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}
