/* ==========================================================================
   Metropolis Capital 
   ========================================================================== */

:root {
  --white: #fff;
  --red: #e21b23;
  --max-width: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  min-height: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: var(--white);
  overflow-x: hidden;
}
.construction-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
}
.hero-slide.active:nth-child(odd) .hero-slide-image {
  animation: zoomIn 8s ease-in-out forwards;
}
.hero-slide.active:nth-child(even) .hero-slide-image {
  animation: zoomOut 8s ease-in-out forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.42) 72%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.72) 0%,
      transparent 55%,
      rgba(0, 0, 0, 0.28) 100%
    );
}
.content-wrap {
  position: relative;
  z-index: 5;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 60px 0;
}
.content {
  max-width: 720px;
}
.logo-placeholder {
  width: 280px;
  min-height: 72px;
  margin-bottom: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.eyebrow {
  margin-bottom: 18px;
  color: #ff565c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.intro {
  max-width: 610px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}
.contact-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  transition: opacity 0.25s ease;
}
.contact-item a:hover {
  opacity: 0.7;
}
.slider-dots {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 6;
  display: flex;
  gap: 9px;
}
.slider-dot {
  width: 30px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.slider-dot.active {
  width: 48px;
  background: var(--white);
}

@media (max-width: 767px) {
  .construction-page {
    align-items: flex-end;
  }
  .content-wrap {
    width: min(100% - 32px, var(--max-width));
    padding: 80px 0 70px;
	margin: auto auto; 
  }
  .logo-placeholder {
    width: 180px;
    min-height: 60px;
    margin-bottom: 36px;
  }
  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }
  .intro {
    margin-bottom: 32px;
    font-size: 16px;
  }
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .slider-dots {
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 420px) {
  .content-wrap {
    width: calc(100% - 28px);
  }
  .logo-placeholder {
    width: 160px;
    margin-bottom: 28px;
  }
  h1 {
    font-size: 42px;
  }
  .contact-item a {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-image {
    animation: none !important;
    transition: none !important;
  }
}
