/* =========================================================
   Ahavaco — Simple under construction page
   Palette: lilac + light blue + cream, gold accent
   ========================================================= */

:root {
  --lilac: #b9a4d4;
  --lilac-strong: #8f75b5;
  --lilac-soft: #ebdefa;
  --sky: #a9c8e8;
  --sky-soft: #e5f0fb;
  --cream: #fbf8f4;
  --ink: #2f2a36;
  --ink-soft: #6d667b;
  --gold: #cba15a;
  --gold-soft: rgba(203, 161, 90, 0.16);
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(160deg, var(--cream) 0%, var(--sky-soft) 55%, var(--lilac-soft) 100%);
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.petal {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.petal-1 { width: 420px; height: 420px; top: -120px; left: -80px; background: var(--lilac); }
.petal-2 { width: 380px; height: 380px; right: -70px; bottom: -120px; background: var(--sky); }
.petal-3 { width: 240px; height: 240px; top: 24%; right: 8%; background: var(--gold); opacity: 0.18; }
.petal-4 { width: 190px; height: 190px; left: 7%; bottom: 14%; background: var(--sky); opacity: 0.35; }

.coming-soon-shell {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 28px));
  text-align: center;
  padding: 32px 0 52px;
  animation: fade-up 0.9s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.status-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(124, 98, 156, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(79, 62, 95, 0.08);
  padding: 42px 26px 30px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.status-message {
  max-width: 540px;
  margin: 0 auto 22px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(203, 161, 90, 0.12);
  border: 1px solid rgba(203, 161, 90, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(203, 161, 90, 0.14);
}

.contact-panel {
  max-width: 420px;
  margin: 26px auto 0;
  padding: 20px 18px 0;
}

.contact-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.contact-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(143, 117, 181, 0.8);
  text-underline-offset: 4px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--lilac-strong), var(--sky));
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.site-footer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(143, 117, 181, 0.8);
  text-underline-offset: 4px;
}

.copyright {
  margin-top: 8px !important;
}

@media (max-width: 560px) {
  .coming-soon-shell {
    width: min(100% - 20px, 680px);
    padding-top: 20px;
  }

  .status-card {
    padding: 30px 18px 26px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button,
  .notify-form input {
    width: 100%;
  }
}

