/* ═══════════════════════════════════════════
   FLOWKEM — COMING SOON
   Matches the reference design exactly.
   ═══════════════════════════════════════════ */

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Warm neutral fallback shown while bg-flow.png loads */
  background: #ccc9c2;
}

body {
  font-family: 'Inter', Arial, sans-serif;
}

/* ═══════════════════════════════
   FULL-VIEWPORT WRAPPER
   bg image lives here + ::before overlay
   ═══════════════════════════════ */
.page {
  /* Dimensions */
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 380px;

  /* Background photo */
  background-image: url('assets/bg-flow.png');
  background-size: cover;
  background-position: center 55%;
  /* show towers + low cloud */
  background-repeat: no-repeat;

  /* Stacking context for ::before overlay */
  position: relative;
  isolation: isolate;

  /* Stack children in a column, centred */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Heavy white/warm wash = the hazy, almost-greyscale look in the reference */
.page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(242, 239, 233, 0.62);
  pointer-events: none;
}

/* Every direct child floats above the overlay */
.logo,
.headline,
.contact {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
   LOGO
   ═══════════════════════════════ */
.logo {
  display: block;
  /* PNG has its own white background — works fine on the light overlay */
  width: clamp(155px, 17vw, 265px);
  height: auto;
  margin-bottom: clamp(18px, 3.8vh, 52px);
  animation: fadeDown 0.75s cubic-bezier(0.22, 0.9, 0.28, 1) both;
}

/* ═══════════════════════════════
   "COMING SOON" HEADLINE
   Wide ultra-bold — matches reference.
   Barlow 900 gives wide, heavy letters
   (not condensed like Barlow Condensed).
   ═══════════════════════════════ */
.headline {
  font-family: 'Barlow', 'Arial Black', Impact, sans-serif;
  font-weight: 600;
  font-size: 160px;
  letter-spacing: 0.025em;
  color: #111111;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  /* Subtle shadow adds depth without looking heavy */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  animation: fadeUp 0.75s 0.1s cubic-bezier(0.22, 0.9, 0.28, 1) both;
}

/* ═══════════════════════════════
   CONTACT ROW
   ── ☎ +971 58 544 4884 ──
   ═══════════════════════════════ */
.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(10px, 2.4vw, 30px);
  margin-top: clamp(14px, 2.8vh, 42px);
  animation: fadeUp 0.75s 0.22s cubic-bezier(0.22, 0.9, 0.28, 1) both;
}

/* thin decorative lines flanking the phone */
.rule {
  display: block;
  flex-shrink: 0;
  width: clamp(28px, 5vw, 82px);
  height: 1px;
  background: #2a2a2a;
  opacity: 0.45;
}

.phone-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.phone-icon {
  flex-shrink: 0;
  width: clamp(13px, 1.35vw, 18px);
  height: clamp(13px, 1.35vw, 18px);
  color: #1e1e1e;
}

.phone {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: color 0.18s ease;
}

.phone:hover {
  color: #d73538;
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .logo {
    width: clamp(135px, 27vw, 225px);
  }

  .headline {
    font-size: clamp(54px, 14.5vw, 112px);
  }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE ≤ 600px
   ═══════════════════════════════ */
@media (max-width: 600px) {
  .logo {
    width: clamp(112px, 45vw, 178px);
    margin-bottom: 14px;
  }

  .headline {
    font-size: clamp(46px, 16.5vw, 82px);
    white-space: normal;
    text-align: center;
  }

  .rule {
    width: 18px;
  }

  .phone {
    font-size: 12.5px;
  }

  .contact {
    gap: 7px;
    margin-top: 10px;
  }
}

/* ═══════════════════════════════
   RESPONSIVE — LANDSCAPE PHONE
   ═══════════════════════════════ */
@media (max-height: 460px) {
  .logo {
    width: clamp(85px, 17vw, 125px);
    margin-bottom: 6px;
  }

  .headline {
    font-size: clamp(36px, 8.5vw, 62px);
  }

  .contact {
    margin-top: 5px;
  }
}