body {
  background: #efefef;
  margin: 0;
  overflow-x: hidden;
}

.construction-page {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.5rem) 1rem clamp(3rem, 5vw, 4.5rem);
}

.construction-section {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.construction-section h2 {
  color: #3a4f70;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  margin: 0 0 clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.construction-row {
  align-items: center;
  display: flex;
  gap: clamp(1.2rem, 2.8vw, 2.6rem);
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.construction-video-card {
  background: #000;
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: 50%;
}

.construction-video-media {
  cursor: pointer;
  display: block;
  filter: saturate(0.78) contrast(0.92);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-ring {
  background: transparent;
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  height: 94px;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  z-index: 2;
}

.play-ring::before {
  border-bottom: 16px solid transparent;
  border-left: 24px solid rgba(255, 255, 255, 0.9);
  border-top: 16px solid transparent;
  content: "";
  left: 53%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-caption {
  background: #cca54b;
  bottom: 2rem;
  color: #2a2a2a;
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  left: 50%;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.2rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.construction-date {
  align-self: center;
  color: #050505;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-align: left;
}

@media (max-width: 980px) {
  .construction-row {
    align-items: stretch;
    flex-direction: column;
  }

  .construction-date {
    flex-direction: row;
    font-size: clamp(1.8rem, 5.5vw, 2.8rem);
    gap: 1rem;
    text-align: center;
  }

  .construction-video-card {
    width: 100%;
  }

  .video-caption {
    bottom: 1rem;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .construction-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .play-ring {
    height: 70px;
    width: 70px;
  }

  .play-ring::before {
    border-bottom-width: 12px;
    border-left-width: 18px;
    border-top-width: 12px;
  }

  .construction-date {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
    gap: 0.65rem;
  }
}
