:root {
  --bg: #121212;
  --bg-2: #1a1a1a;
  --paper: #fafafa;
  --ink: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #ff3d2c;
  --line: rgba(255, 255, 255, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Figtree", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--ink); }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,18,0.25) 0%, rgba(18,18,18,0.92) 78%),
    url("../img/hero.jpg") center/cover no-repeat;
}

.hero-copy {
  position: relative;
  padding: 0 0 72px;
}

.kicker {
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); max-width: 14ch; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.lede {
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 22px 0 32px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-accent { background: var(--accent); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-soon { opacity: 0.55; pointer-events: none; }

.section { padding: 88px 0; border-bottom: 1px solid var(--line); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  min-height: 180px;
}

.card p { color: var(--muted); margin: 10px 0 0; }

.arabic {
  font-family: "Amiri", serif;
  font-size: 1.4rem;
  color: var(--muted);
}

.legal {
  padding: 64px 0 96px;
  max-width: 72ch;
}

.legal h1 { font-size: 2.4rem; margin-bottom: 18px; }
.legal h2 { font-size: 1.4rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer nav { display: flex; gap: 16px; }

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { min-height: 78vh; }
}
