:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffb800;
  color: #131312;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffcc52 0%, #ffb800 45%, #f39800 100%);
}

.construction-page {
  width: min(100%, 1120px);
  padding: 32px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 76vh;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  max-width: 560px;
}

.status-pill {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: #131312;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 20px 0 22px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #0f1511;
}

p {
  margin: 0;
  color: #191d1a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #131312;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #0a0c0b;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-links a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.image-credit {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(19, 19, 18, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.sign-board {
  width: 100%;
  max-width: 360px;
  min-height: 180px;
  background: linear-gradient(180deg, #f9d55c 0%, #f6b70b 100%);
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px 24px;
  text-align: center;
}

.sign-board span {
  color: #2b2b2b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sign-board strong {
  color: #141414;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.helmet {
  position: absolute;
  bottom: 16px;
  right: 34px;
  width: 140px;
  height: 96px;
  background: linear-gradient(180deg, #ffb337 0%, #e68900 100%);
  border-radius: 72px 72px 34px 34px;
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.24), 0 22px 42px rgba(0, 0, 0, 0.16);
}

.helmet::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 112px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.pipe {
  position: absolute;
  bottom: 20px;
  width: 180px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9d9d9 0%, #b7b7b7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pipe-left {
  left: 12px;
  transform: rotate(-10deg);
}

.pipe-right {
  right: 12px;
  transform: rotate(14deg);
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .construction-page {
    padding: 20px;
  }

  .hero-card {
    padding: 28px;
    border-radius: 24px;
    gap: 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .primary-button {
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }
}
