/* Amarah — Coming Soon
   Soft golds · sage greens · cream/ivory · refined typography */

:root {
  --cream: #f7f3eb;
  --ivory: #fbf8f2;
  --cream-deep: #ebe4d6;
  --green-deep: #6b8f7a;
  --green-mid: #87a892;
  --green-soft: #9bb5a6;
  --gold: #c4a574;
  --gold-soft: #d4bc94;
  --gold-muted: #a8895e;
  --ink: #3d5248;
  --ink-muted: #6e8177;
  --line: rgba(196, 165, 116, 0.35);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  --radius: 999px;
  --max: 40rem;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(196, 165, 116, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(107, 143, 122, 0.10), transparent 45%),
    linear-gradient(165deg, var(--ivory) 0%, var(--cream) 55%, var(--cream-deep) 100%);
  color-scheme: light;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--space-lg) var(--space-sm) var(--space-md);
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

/* —— Brand —— */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-top: var(--space-sm);
}

.logo-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  opacity: 0.95;
}

.wordmark-ar {
  font-family: "Amiri", "Traditional Arabic", "Noto Naskh Arabic", serif;
  font-size: clamp(3.5rem, 8vw, 4.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  margin: 0;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.1;
}

.tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  max-width: 22rem;
}

/* —— Hero —— */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-block: var(--space-lg);
  width: 100%;
  max-width: var(--max);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 9vw, 3.75rem);
  line-height: 1.15;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.lede {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 28rem;
  margin-inline: auto;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory);
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

.whatsapp {
  font-size: 0.875rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  max-width: 22rem;
}

.hero::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: calc(var(--space-sm) * -0.25);
}

/* —— Footer —— */
.footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: var(--max);
}

.entity {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.copy {
  font-size: 0.75rem;
  color: var(--gold-muted);
  letter-spacing: 0.03em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

@media (min-width: 640px) {
  .page {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .logo-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .lede {
    font-size: 1.125rem;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }

  .btn {
    border: 1px solid #333;
    color: #333;
    background: transparent;
  }
}
