* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #001226;
  --charcoal-light: #0a2742;
  --gold: #e8ae37;
  --gold-light: #f2c45f;
  --text: #001226;
  --muted: #3a4a5e;
  --white: #ffffff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #eef1f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  background: #001226;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 14px 38px rgba(0, 18, 38, 0.15);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 18, 38, 0.06);
}

.logo img {
  height: 280px;
  width: auto;
  display: block;
}

.construction-img {
  width: 220px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.75rem;
  border: 4px solid var(--white);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

p.sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.construction {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--charcoal-light);
  color: #f0ece4;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 2.25rem;
  font-size: 1rem;
  font-weight: 500;
}

.construction .bar {
  display: flex;
  gap: 5px;
}
.construction .stripe {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  animation: blink 1.4s infinite ease-in-out;
}
.construction .stripe:nth-child(2) {
  animation-delay: 0.2s;
}
.construction .stripe:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

.contact {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.contact a:hover {
  color: var(--gold);
}

footer {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 18, 38, 0.12);
  padding-top: 1.25rem;
  width: 100%;
  max-width: 460px;
}
footer .brand {
  color: var(--charcoal);
  font-weight: 600;
}

@media (max-width: 480px) {
  .logo img {
    height: 200px;
  }
  .construction-img {
    width: 180px;
  }
  h1 {
    font-size: 1.6rem;
  }
}
