:root {
  --bg: #04393e;
  --ivory: #f4efe7;
  --ivory-soft: rgba(244, 239, 231, 0.80);
  --line: rgba(244, 239, 231, 0.28);
  --line-strong: rgba(244, 239, 231, 0.50);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 24px 88px;
}

.content {
  width: min(700px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(290px, 62vw);
  max-height: 42vh;
  object-fit: contain;
  margin: 0 auto 26px;
}

.separator {
  width: 52px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 50%, transparent 100%);
}

h1 {
  margin: 0 auto 14px;
  max-width: 610px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.intro {
  margin: 0 auto;
  max-width: 590px;
  color: var(--ivory-soft);
  font-size: clamp(0.95rem, 1.15vw, 1rem);
  line-height: 1.7;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a,
.whatsapp-float {
  color: var(--ivory);
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(244, 239, 231, 0.06);
  outline: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-details {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ivory-soft);
  font-size: 0.92rem;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--ivory);
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 231, 0.42);
  border-radius: 50%;
  background: rgba(4, 57, 62, 0.96);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: #0a474d;
  border-color: rgba(244, 239, 231, 0.68);
  outline: none;
}

@media (max-width: 600px) {
  .coming-soon {
    align-items: flex-start;
    padding: 34px 20px 92px;
  }

  .logo {
    width: min(230px, 68vw);
    max-height: none;
    margin-bottom: 22px;
  }

  h1 { font-size: 1.52rem; }

  .intro {
    max-width: 340px;
    font-size: 0.93rem;
  }

  .social-links {
    gap: 10px;
    margin-top: 24px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .social-links svg {
    width: 19px;
    height: 19px;
  }

  .contact-details {
    flex-direction: column;
    gap: 6px;
  }

  .contact-details span { display: none; }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-height: 760px) and (min-width: 601px) {
  .coming-soon { padding-top: 26px; padding-bottom: 70px; }
  .logo { width: 235px; max-height: 38vh; margin-bottom: 18px; }
  .separator { margin-bottom: 18px; }
  .social-links { margin-top: 22px; }
  .contact-details { margin-top: 18px; }
}
