@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Noto+Kufi+Arabic:wght@400;600;700&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --kraft:       #c4a46b;
  --kraft-light: #d9bc8e;
  --kraft-dark:  #8b6b3d;
  --ink:         #1a1208;
  --ink-light:   #3d2b0e;
  --cream:       #f5ead4;
  --cream-dark:  #e8d5b0;
  --warm-white:  #faf4e8;
  --accent:      #b5451b;
  --gold:        #d4a843;
  --shadow:      rgba(26,18,8,0.35);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--kraft-dark); border-radius: 3px; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(26,18,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,164,107,0.2);
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  height: 60px;
  background: rgba(26,18,8,0.98);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--kraft);
  filter: brightness(1.1);
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--kraft-light);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-job-btn {
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--kraft-light));
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-job-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212,168,67,0.35);
}

.lang-toggle {
  background: none;
  border: 1.5px solid var(--kraft);
  color: var(--kraft-light);
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.lang-toggle:hover {
  background: var(--kraft);
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--kraft-light);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(26,18,8,0.98);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  border-bottom: 2px solid var(--kraft-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--cream-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(196,164,107,0.15);
  padding-bottom: 1rem;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,107,61,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(181,69,27,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a1208 0%, #2d1f0a 50%, #1a1208 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  padding-top: 70px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.4);
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--kraft);
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 0 40px rgba(196,164,107,0.25);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -2px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--kraft-light);
}
.hero-tagline {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--kraft-light);
  margin: 1.2rem auto;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.35s both;
  direction: rtl;
}
.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,234,212,0.5);
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.45s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.55s both;
}
.btn-primary {
  background: var(--kraft);
  color: var(--ink);
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,164,107,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream-dark);
  padding: 14px 36px;
  border: 1.5px solid rgba(245,234,212,0.3);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--kraft-light);
  color: var(--kraft-light);
  transform: translateY(-2px);
}
.btn-hot {
  background: linear-gradient(135deg, #e0592f 0%, #f19c38 100%);
  color: #190f05;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 0 0 rgba(240,128,54,0.5);
  animation: pulseHot 2s infinite;
}
.btn-hot:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 28px rgba(240,128,54,0.35);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,234,212,0.4);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.8s both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245,234,212,0.4), transparent);
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTION COMMONS ────────────────────────────────────── */
section { padding: 100px 0; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--kraft-dark);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--kraft-dark); }
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--kraft), var(--gold));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26,18,8,0.65);
  max-width: 560px;
}

/* ─── STORY SECTION ──────────────────────────────────────── */
.story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '1989';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 900;
  color: rgba(196,164,107,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-image {
  position: relative;
}
.story-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.story-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: sepia(20%) contrast(1.05);
}
.story-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181,69,27,0.08), transparent);
}
.story-img-corner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border: 2px solid var(--kraft);
  border-radius: 4px;
  z-index: -1;
}
.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(196,164,107,0.3);
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-num span { color: var(--kraft-dark); }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,18,8,0.5);
  margin-top: 4px;
}

/* ─── MENU PREVIEW ───────────────────────────────────────── */
.menu-preview {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.menu-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(139,107,61,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(181,69,27,0.06) 0%, transparent 60%);
}
.menu-preview .section-title { color: var(--cream); }
.menu-preview .section-desc { color: rgba(245,234,212,0.5); }
.menu-preview .section-label { color: var(--gold); }
.menu-tabs {
  display: flex;
  gap: 0;
  margin: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(196,164,107,0.2);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  background: none;
  border: none;
  color: rgba(245,234,212,0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s;
}
.menu-tab.active { color: var(--gold); }
.menu-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.menu-tab:hover { color: var(--kraft-light); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: rgba(196,164,107,0.1); }
.menu-item {
  background: rgba(26,18,8,0.6);
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s;
  cursor: default;
}
.menu-item:hover { background: rgba(139,107,61,0.15); }
.menu-item-left {}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 5px;
}
.menu-item-desc {
  font-size: 0.78rem;
  color: rgba(245,234,212,0.4);
  line-height: 1.5;
  font-family: 'Noto Kufi Arabic', sans-serif;
  direction: rtl;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-price span {
  font-size: 0.7rem;
  font-family: 'Lato', sans-serif;
  color: rgba(212,168,67,0.6);
  margin-left: 2px;
}
.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--warm-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: sepia(0%) contrast(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
}

/* ─── LOCATIONS ──────────────────────────────────────────── */
.locations {
  background: var(--cream);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.location-card {
  background: var(--warm-white);
  border: 1px solid rgba(196,164,107,0.25);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kraft), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.location-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,18,8,0.1); }
.location-card:hover::before { transform: scaleX(1); }
.location-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(196,164,107,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.location-address {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(26,18,8,0.6);
  margin-bottom: 1.5rem;
}
.location-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kraft-dark);
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}
.location-phone:hover { color: var(--accent); }
.location-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.location-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(196,164,107,0.3);
}
.location-hours-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(26,18,8,0.4);
  margin-bottom: 0.5rem;
}
.location-hours-text {
  font-size: 0.88rem;
  color: var(--ink-light);
  font-weight: 600;
}
.location-menu-btn {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(196,164,107,0.4);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.location-menu-btn:hover {
  background: var(--kraft-dark);
  border-color: var(--kraft-dark);
  transform: translateY(-1px);
}

/* ─── CONTACT SECTION ─────────────────────────────────────── */
.contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,107,61,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}
.contact .section-title { color: var(--cream); }
.contact .section-desc { color: rgba(245,234,212,0.5); }
.contact .section-label { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-actions {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,164,107,0.22);
  border-radius: 6px;
  padding: 1.6rem;
}
.contact-actions-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.contact-actions-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.contact-actions-note {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,234,212,0.52);
  margin-bottom: 1.4rem;
}
.form-actions-grid {
  display: grid;
  gap: 0.9rem;
}
.form-action-card {
  border: 1px solid rgba(196,164,107,0.18);
  background: rgba(0,0,0,0.16);
  border-radius: 4px;
  padding: 1rem;
}
.form-action-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.form-action-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,234,212,0.56);
}
.form-action-link {
  margin-top: 0.9rem;
  padding: 11px 20px;
  letter-spacing: 2px;
}
#promotion-form {
  border-color: rgba(241,156,56,0.45);
  background: linear-gradient(165deg, rgba(240,128,54,0.18), rgba(0,0,0,0.18));
}
.form-action-badge {
  display: inline-block;
  background: rgba(241,156,56,0.2);
  border: 1px solid rgba(241,156,56,0.6);
  color: #ffd28d;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,234,212,0.5);
}
.form-input, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,164,107,0.2);
  border-radius: 3px;
  padding: 14px 18px;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--kraft);
  background: rgba(196,164,107,0.05);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(245,234,212,0.2);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit {
  background: var(--kraft);
  color: var(--ink);
  border: none;
  padding: 16px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,164,107,0.3);
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-item {}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.contact-info-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,234,212,0.6);
}
.contact-info-text a {
  color: var(--kraft-light);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-text a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(196,164,107,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kraft-light);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.social-link-fallback {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.social-link:hover {
  border-color: var(--kraft);
  background: rgba(196,164,107,0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.mobile-menu a.mobile-menu-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--kraft-light));
  border: none;
  border-radius: 4px;
  padding: 12px 14px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0e0b04;
  padding: 3rem 0;
  border-top: 1px solid rgba(196,164,107,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--kraft-dark);
  filter: brightness(0.85);
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(245,234,212,0.4);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,234,212,0.2);
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,234,212,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--kraft-light); }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.lightbox-close:hover { color: #fff; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--ink);
  border: 1px solid var(--kraft);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseHot {
  0% { box-shadow: 0 0 0 0 rgba(240,128,54,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(240,128,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,128,54,0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .lang-toggle, .nav-job-btn { display: none; }
  .hamburger { display: flex; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story::before { font-size: 10rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 220px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .menu-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-nav { padding: 0 1.2rem; }
  .container { padding: 0 1.2rem; }
  section { padding: 70px 0; }
  .hero h1 { letter-spacing: -1px; }
  .story-stats { flex-wrap: wrap; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle-link {
  background: none;
  border: 1.5px solid var(--kraft);
  color: var(--kraft-light);
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
}

.lang-toggle-link:hover {
  background: var(--kraft);
  color: var(--ink);
}

.story-copy {
  margin-bottom: 1.4rem;
}

.gallery-link-out,
.gallery-lightbox-btn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.location-summary {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(26,18,8,0.7);
  margin-bottom: 1rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-map-btn svg {
  width: 16px;
  height: 16px;
}

.form-embed-wrap {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(196,164,107,0.22);
  background: rgba(255,255,255,0.04);
}

.form-embed-wrap iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.form-empty-note {
  display: inline-block;
  margin-top: 1rem;
  color: rgba(245,234,212,0.44);
  font-size: 0.85rem;
}

html[dir="rtl"] body {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

html[dir="rtl"] .section-title,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .nav-logo span,
html[dir="rtl"] .footer-logo span,
html[dir="rtl"] .location-name,
html[dir="rtl"] .contact-actions-title,
html[dir="rtl"] .form-action-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

html[dir="rtl"] .hero-tagline,
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .section-desc,
html[dir="rtl"] .location-address,
html[dir="rtl"] .location-summary,
html[dir="rtl"] .contact-actions-note,
html[dir="rtl"] .contact-info-text {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .story-grid,
html[dir="rtl"] .contact-grid {
  direction: rtl;
}

html[dir="rtl"] .locations-grid,
html[dir="rtl"] .footer-inner,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .location-actions {
  direction: rtl;
}

@media (max-width: 900px) {
  .lang-toggle-link { display: none; }
}

