:root {
  --olive-900: rgba(21, 56, 22, 0.86);
  --olive-700: rgba(37, 84, 36, 0.7);
  --dark-900: rgba(0, 0, 0, 0.86); /* overlay */
  --dark-700: rgba(0, 0, 0, 0.7);
  --gold: #BABA13FF;
  --muted: rgba(255, 255, 255, 0.85);
  --max-width: 900px;
  --dark-
}

/* Reset and base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--muted);
  background: #0b0b09;
}

/* Fullscreen hero */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background-color: #0b0b09; /* fallback */
  background-image: url("under_construction.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 40px 20px;
}

/* colored overlay to match screenshot */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-700), var(--dark-900));
  mix-blend-mode: multiply;
  z-index: 0;
}

.content {
  position: relative; /* above overlay */
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(58px, 10vw, 130px);
  line-height: 0.9;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.accent {
  width: 72px;
  height: 1px;
  background-color: var(--gold);
  border-radius: 2px;
  margin: 10px auto 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

h2 {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.92);
}

p.lead {
  margin: 28px auto 40px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  opacity: 0.95;
}

.inquiries {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.inquiries > .small {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

a.email {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.12);
  padding: 8px 14px;
  border-radius: 999px;

  &:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}

a.email:focus {
  outline: 2px solid rgba(255, 255, 255, 0.12);
  outline-offset: 3px;
}

.dots {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
  background: var(--gold);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0.2;
  animation: pulse 2s infinite linear;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .content {
    padding: 40px 20px;
  }
  h1 {
    font-size: 48px;
  }
  .accent {
    width: 48px;
  }
}
