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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: 'Raleway', sans-serif;
  color: #2e4a68;
}

/* ── Layout ── */

.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 960px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ── Animations ── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header,
.coming-soon,
.subtitle,
.contact-block,
footer {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

header         { animation-delay: 0s; }
.coming-soon   { animation-delay: 0.3s; }
.subtitle      { animation-delay: 0.5s; }
.contact-block { animation-delay: 0.7s; }
footer         { animation-delay: 0.9s; }

/* ── Logo ── */

.logo {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Heading ── */

.coming-soon {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2e4a68;
}

/* ── Subtitle ── */

.subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 300;
  color: #9bb0c5;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ── Contact ── */

.contact-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: #2e4a68;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  font-size: 0.9rem;
  color: #9bb0c5;
}

.contact-block a {
  color: #2e4a68;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.contact-block a:hover {
  color: #9bb0c5;
  border-bottom-color: #9bb0c5;
}

/* ── Social Icons ── */

.social-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
}

.social-links a {
  color: #2e4a68;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: #9bb0c5;
  transform: translateY(-3px);
}
