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

:root {
  --cream:  #FAFAFA;
  --black:  #1A1614;
  --dark:   #1A1614;
  --dark2:  #231E1C;
  --green:  #9D4E37;
  --green2: #B5604A;
  --border: rgba(26,22,20,0.12);
  --font:   'IBM Plex Sans Arabic', sans-serif;
  --nav-h:  68px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--black);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.dot { color: var(--green); }

/* ── NAV ────────────────────────────────────────────── */
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-dot { color: var(--green); font-size: 0.55em; }

.logo-img {
  height: 28px;
  width: auto;
  display: block;
  max-width: 160px;
}

.nav-contact {
  font-family: var(--font);
  font-size: 0.85rem;
  color: rgba(10,10,10,0.45);
  text-decoration: none;
  transition: color 0.2s;
  direction: ltr;
}
.nav-contact:hover { color: var(--black); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px);
}

.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

/* ── LEFT ───────────────────────────────────────────── */
.hero-headline {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(10,10,10,0.58);
  max-width: 500px;
  margin-bottom: 8px;
}

.en-note {
  font-family: var(--font);
  font-size: 0.82rem;
  color: rgba(10,10,10,0.32);
  line-height: 1.65;
  margin-bottom: 36px;
  direction: ltr;
}

/* Notify form */
.notify-form {
  display: flex;
  max-width: 460px;
  margin-bottom: 10px;
}

.notify-form input {
  flex: 1;
  background: transparent;
  border: 1.5px solid rgba(10,10,10,0.35);
  border-left: none;
  color: var(--black);
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 13px 16px;
  outline: none;
  direction: rtl;
  transition: border-color 0.2s;
  min-width: 0;
}
.notify-form input::placeholder { color: rgba(10,10,10,0.28); }
.notify-form input:focus { border-color: var(--green); }

.notify-form button {
  background: var(--black);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 22px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.notify-form button:hover { background: var(--green); border-color: var(--green); }

.notify-success {
  display: none;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  padding: 10px 0;
}
.notify-success.show { display: block; }

.hero-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-social a {
  font-family: var(--font);
  font-size: 0.82rem;
  color: rgba(10,10,10,0.38);
  text-decoration: none;
  letter-spacing: 0.03em;
  direction: ltr;
  display: inline-block;
  transition: color 0.2s;
}
.hero-social a:hover { color: var(--black); }

/* ── RIGHT — services peek ──────────────────────────── */
.services-peek {
  background: var(--dark);
  padding: clamp(28px, 3.5vw, 44px);
}

.peek-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.peek-label {
  font-family: var(--font);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.peek-grid { display: flex; flex-direction: column; }

.peek-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding-right 0.15s;
}
.peek-item:last-child { border-bottom: none; padding-bottom: 0; }
.peek-item:hover { padding-right: 6px; }

.peek-num {
  font-family: var(--font);
  font-size: 0.65rem;
  color: var(--green2);
  font-weight: 500;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 18px;
  direction: ltr;
}

.peek-name {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
  transition: color 0.15s;
}
.peek-item:hover .peek-name { color: #fff; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 20px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(10,10,10,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--black); }

.footer-copy {
  font-family: var(--font);
  font-size: 0.75rem;
  color: rgba(10,10,10,0.28);
  direction: ltr;
}
.footer-tagline {
  font-family: var(--font);
  font-size: 0.78rem;
  color: rgba(10,10,10,0.38);
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-headline   { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-sub        { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.en-note         { animation: fadeUp 0.6s ease both; animation-delay: 0.25s; }
.notify-form     { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
.hero-social     { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.services-peek   { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 520px) {
  .notify-form { flex-direction: column; }
  .notify-form input  { border-left: 1.5px solid rgba(10,10,10,0.35); border-bottom: none; }
  .notify-form button { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
