:root {
  --bg: #F7F3EE;
  --surface: #FFFFFF;
  --sage: #8A9A82;
  --terracotta: #C08566;
  --terracotta-dark: #A96E50;
  --text: #3D3A35;
  --muted: #6E6A62;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(61, 58, 53, 0.08);
  --maxw: 1080px;
  --font-ar: 'Cairo', system-ui, sans-serif;
  --font-default: 'Heebo', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-default);
  line-height: 1.7;
  font-size: 18px;
}
html[lang="ar"] body { font-family: var(--font-ar); }

h1, h2, h3 { font-weight: 600; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6em; }
section { max-width: var(--maxw); margin-inline: auto; padding: 4rem 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 1.5rem;
  background: rgba(247, 243, 238, 0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61,58,53,0.06);
}
.brand { display: flex; flex-direction: column; }
.brand-name { font-weight: 700; }
.brand-title { font-size: 0.85rem; color: var(--muted); }
.lang-toggle { display: flex; gap: 0.25rem; }
.lang-toggle button {
  border: 1px solid transparent; background: transparent; cursor: pointer;
  font: inherit; color: var(--muted); padding: 0.3rem 0.6rem; border-radius: 999px;
}
.lang-toggle button.active { background: var(--sage); color: #fff; }

/* Hero */
.hero { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: center; }
.hero-img {
  width: 280px; height: 340px; border-radius: var(--radius);
  object-fit: cover; object-position: top center;
  box-shadow: var(--shadow); display: block;
}
.hero-subtitle { color: var(--sage); font-weight: 600; margin: 0.2rem 0 0.8rem; }
.hero-tagline { color: var(--muted); margin-bottom: 1.5rem; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  padding: 0.7rem 1.4rem; border-radius: 999px; border: 1px solid var(--sage);
  color: var(--text); background: var(--surface); font: inherit;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-whatsapp { background: #25D366; border-color: #25D366; color: #fff; }

/* About */
.about-body p { margin: 0 0 1.1rem; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.card { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.card h3 { color: var(--terracotta-dark); margin-top: 0; }

/* Location */
.address { font-weight: 600; }
.map { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Contact */
.contact-methods { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.contact-form { display: grid; gap: 1rem; max-width: 520px; }
.contact-form label { display: grid; gap: 0.35rem; font-size: 0.95rem; color: var(--muted); }
.contact-form input, .contact-form textarea {
  font: inherit; padding: 0.7rem 0.9rem; border: 1px solid #D8D0C4;
  border-radius: 10px; background: var(--surface); color: var(--text);
}
.form-status { min-height: 1.2em; font-weight: 600; }
.form-status.success { color: var(--sage); }
.form-status.error { color: #B4544A; }

/* Footer */
.site-footer { text-align: center; padding: 2rem 1.5rem; color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-img { width: 220px; height: 270px; }
}
