:root {
  --brand: #e46a2b;
  --brand-dark: #b34a1b;
  --ink: #1b1816;
  --muted: #5b524a;
  --sand: #f6efe6;
  --cream: #fdf8f2;
  --line: #eaded0;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 40px rgba(34, 24, 16, 0.14);
  --radius: 20px;
  --font-body: "Tajawal", "Noto Naskh Arabic", serif;
  --font-display: "Changa", "Tajawal", sans-serif;
  --font-en: "Sora", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fff6e8 0%, transparent 55%),
    radial-gradient(circle at 80% 10%, #ffe9d4 0%, transparent 50%),
    linear-gradient(120deg, #fdf7f1 0%, #f4ebdf 45%, #efe0cd 100%);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 106, 43, 0.25), rgba(228, 106, 43, 0));
  z-index: 0;
}

.page::before {
  top: -220px;
  right: -180px;
}

.page::after {
  bottom: -240px;
  left: -200px;
  background: radial-gradient(circle, rgba(46, 110, 104, 0.2), rgba(46, 110, 104, 0));
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  top: -40px;
  right: 16px;
  background: var(--brand);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  transition: top 0.2s ease;
  z-index: 10;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  backdrop-filter: blur(10px);
  background: rgba(253, 248, 242, 0.85);
  border-bottom: 1px solid rgba(234, 222, 208, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
}

.nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: rgba(228, 106, 43, 0.12);
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}

.hero--compact {
  padding: 2.5rem 0 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin: 0 0 1rem;
}

.hero p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(228, 106, 43, 0.2);
}

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

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(228, 106, 43, 0.15), transparent 60%);
  opacity: 0.6;
}

.hero-card img {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.badge {
  background: rgba(27, 24, 22, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 2.5rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  margin: 0;
}

.section-subtitle {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 222, 208, 0.8);
}

.info-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.media-card {
  background: white;
  border-radius: 18px;
  padding: 0.8rem;
  border: 1px solid rgba(234, 222, 208, 0.8);
  box-shadow: 0 12px 26px rgba(16, 10, 6, 0.08);
}

.media-card img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.list-inline {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-inline li {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(234, 222, 208, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  background: white;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(234, 222, 208, 0.8);
}

.contact-card h4 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(234, 222, 208, 0.8);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(150, 136, 122, 0.4);
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background: #18130f;
  color: #f6efe6;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-brand h3 {
  margin: 0;
  font-family: var(--font-display);
}

.footer-brand span {
  display: block;
  color: rgba(246, 239, 230, 0.7);
  font-size: 0.9rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-list a {
  color: inherit;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(246, 239, 230, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .hero {
  animation: hero-in 0.7s ease forwards;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0.75rem;
    left: 0.75rem;
    background: rgba(253, 248, 242, 0.98);
    border-radius: 18px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: var(--shadow);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav.is-open {
    padding: 1rem 0.8rem;
    max-height: 360px;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    grid-template-columns: auto;
  }

  .brand-title {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .reveal,
  body.is-loaded .hero {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
