/* ================================================================
   ZAIQA SPICES
   Minimal Luxury Landing Page
   ================================================================ */

:root {
  --bg: #211107;
  --bg-soft: #2a160b;
  --gold: #d4af37;
  --gold-light: #f1d98a;
  --gold-muted: #a98b35;

  --text: #f7f2e8;
  --text-muted: #b9a999;

  --line: rgba(212, 175, 55, 0.22);

  --font-serif: "Cinzel", "Playfair Display", Georgia, serif;
  --font-serif-italic: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", sans-serif;
}

/* ------------------------------------------------
   RESET
------------------------------------------------ */

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%,
      rgba(111, 65, 28, 0.28),
      transparent 42%),
    var(--bg);

  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}

/* ------------------------------------------------
   SUBTLE AMBIENT BACKGROUND
------------------------------------------------ */

.bg-ambient-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 15% 20%,
      rgba(212, 175, 55, 0.035),
      transparent 30%),
    radial-gradient(circle at 85% 80%,
      rgba(212, 175, 55, 0.035),
      transparent 30%);
}

/* ------------------------------------------------
   PAGE
------------------------------------------------ */

.page-wrapper {
  position: relative;
  z-index: 1;

  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 60px 24px;
}

/* ------------------------------------------------
   MAIN CONTENT
------------------------------------------------ */

.brand-card {
  width: 100%;
  max-width: 720px;

  text-align: center;

  animation: pageReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

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

/* ------------------------------------------------
   LOGO
------------------------------------------------ */

.logo-wrapper {
  width: min(390px, 78vw);
  margin: 0 auto 34px;
}

.zaiqa-logo {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

/* ------------------------------------------------
   DIVIDER
------------------------------------------------ */

.gold-divider {
  width: 100%;
  max-width: 360px;

  margin: 0 auto 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  color: var(--gold);
}

.gold-divider::before,
.gold-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: linear-gradient(90deg,
      transparent,
      var(--line));
}

.gold-divider::after {
  background: linear-gradient(90deg,
      var(--line),
      transparent);
}

.gold-divider svg {
  width: 12px;
  height: 12px;

  opacity: 0.75;
}

/* ------------------------------------------------
   ABOUT
------------------------------------------------ */

.about-text {
  max-width: 610px;

  margin: 0 auto 34px;

  color: var(--text-muted);

  font-size: 0.96rem;
  line-height: 1.9;

  font-weight: 400;
}

.about-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ------------------------------------------------
   CONTACT
------------------------------------------------ */

.contact-block {
  width: 100%;
  max-width: 600px;

  margin: 0 auto 28px;

  padding: 20px 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
  flex-wrap: wrap;

  font-size: 0.86rem;
}

.contact-label {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: var(--gold);

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-label svg {
  width: 14px;
  height: 14px;
}

.contact-phones {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--text);
  text-decoration: none;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.contact-link:hover {
  color: var(--gold-light);
}

.phone-sep {
  color: var(--gold-muted);
  opacity: 0.5;
}

/* ------------------------------------------------
   ACTION BUTTONS
------------------------------------------------ */

.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
  flex-wrap: wrap;

  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 9px 20px;

  border-radius: 999px;

  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.01em;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* WhatsApp */

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;

  box-shadow: 0 5px 18px rgba(37, 211, 102, 0.16);
}

.btn-whatsapp:hover {
  background: #20bd5a;

  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.24);
}

/* Email */

.btn-email {
  color: var(--gold-light);

  background: transparent;

  border: 1px solid var(--line);
}

.btn-email:hover {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.06);
}

/* ------------------------------------------------
   LAUNCH NOTICE
------------------------------------------------ */

.launch-notice {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: var(--gold-muted);

  font-size: 0.72rem;

  letter-spacing: 0.035em;

  opacity: 0.9;
}

.launch-notice .dot {
  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background: #4ade80;

  box-shadow: 0 0 8px rgba(74, 222, 128, 0.35);
}

/* ------------------------------------------------
   FOOTER
------------------------------------------------ */

.page-footer {
  margin-top: 28px;

  text-align: center;

  color: rgba(185, 169, 153, 0.45);

  font-size: 0.68rem;

  letter-spacing: 0.025em;
}

/* ------------------------------------------------
   TOAST
------------------------------------------------ */

.toast-msg {
  position: fixed;

  left: 50%;
  bottom: 24px;

  transform: translate(-50%, 80px);

  padding: 9px 16px;

  background: #1a0d06;

  border: 1px solid var(--line);

  border-radius: 7px;

  color: var(--text);

  font-size: 0.8rem;

  opacity: 0;

  pointer-events: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;

  z-index: 1000;
}

.toast-msg.show {
  transform: translate(-50%, 0);

  opacity: 1;
}

/* ------------------------------------------------
   MOBILE
------------------------------------------------ */

@media (max-width: 650px) {

  .page-wrapper {
    padding: 40px 20px;
  }

  .logo-wrapper {
    width: min(330px, 82vw);
    margin-bottom: 28px;
  }

  .gold-divider {
    max-width: 280px;
    margin-bottom: 28px;
  }

  .about-text {
    font-size: 0.88rem;
    line-height: 1.8;

    margin-bottom: 28px;
  }

  .contact-block {
    padding: 17px 0;
  }

  .contact-row {
    flex-direction: column;

    gap: 5px;
  }

  .contact-phones {
    flex-direction: column;
    gap: 4px;
  }

  .phone-sep {
    display: none;
  }

  .action-buttons {
    flex-direction: column;

    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .launch-notice {
    max-width: 330px;

    margin: 0 auto;

    line-height: 1.6;
  }

  .page-footer {
    max-width: 320px;

    line-height: 1.6;
  }
}

/* ------------------------------------------------
   VERY SMALL SCREENS
------------------------------------------------ */

@media (max-width: 380px) {

  .page-wrapper {
    padding: 30px 16px;
  }

  .logo-wrapper {
    width: 82vw;
  }

  .about-text {
    font-size: 0.84rem;
  }

  .contact-link {
    font-size: 0.82rem;
  }
}