*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  background: #f7f4ef;
  font-family: 'Jost', sans-serif;
  color: #2c2c2c;
}
.construction-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-image: url('../../sections/hero/hero.jpg');
  background-size: cover;
  background-position: center;
}
.construction-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(247, 244, 239, 0.88);
}
.construction-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d6cfc4;
  padding: 3.5rem 3rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.construction-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7e6e;
  margin-bottom: 1rem;
}
.construction-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.construction-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #6b5e4e;
  margin-bottom: 2.5rem;
}
.construction-divider {
  width: 40px;
  height: 1px;
  background: #b8a98a;
  margin: 0 auto 2.5rem;
}
.construction-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7e6e;
  margin-bottom: 0.6rem;
  text-align: left;
}
.construction-form input[type="password"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d6cfc4;
  background: #faf9f6;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: #2c2c2c;
  outline: none;
  transition: border-color 0.2s;
}
.construction-form input[type="password"]:focus {
  border-color: #8a7e6e;
}
.construction-form input[type="password"].is-error {
  border-color: #b94040;
}
.construction-error {
  font-size: 0.78rem;
  color: #b94040;
  margin-top: 0.5rem;
  text-align: left;
  display: none;
}
.construction-error.visible { display: block; }
.construction-form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: #2c2c2c;
  color: #f7f4ef;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.construction-form button:hover { background: #4a3f32; }
