:root {
  --text: #fff8f2;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1c140f;
}

.construction-page {
  min-height: 100vh;
}

.construction-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.construction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 14, 10, 0.35) 0%, rgba(23, 14, 10, 0.58) 100%);
}

.construction-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  color: var(--text);
  text-shadow: var(--shadow);
}

.construction-content h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.construction-content p {
  margin: 18px 0 0;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
