@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Noto+Sans+Arabic:wght@300;400;600;700;900&display=swap');

/* ══════════════════════════════════════════════
   BRAND IDENTITY — extracted from logo
   Maroon: #6B1E1E  |  Gold: #C8921A
   BG: deep warm espresso brown (not black)
   ══════════════════════════════════════════════ */
:root {
  /* Backgrounds — warm espresso tones, never black */
  --bg:           #1A0C05;
  --bg-2:         #210F06;
  --bg-3:         #2A1408;
  --card-bg:      #31190A;
  --card-hover:   #3C200D;

  /* Brand */
  --red:          #7B2020;
  --red-hover:    #962828;
  --red-deep:     #5A1A14;
  --gold:         #C8921A;
  --gold-light:   #D4A82E;
  --gold-dim:     rgba(200,146,26,0.13);
  --gold-glow:    rgba(200,146,26,0.22);

  /* Text */
  --white:        #FFFFFF;
  --text:         #EDD9C0;
  --text-2:       #D4B898;
  --text-dim:     #A07850;
  --muted:        #6A4828;

  /* Borders */
  --border:       rgba(200,146,26,0.18);
  --border-h:     rgba(200,146,26,0.52);
  --border-sub:   rgba(255,255,255,0.06);

  /* Shadows */
  --shadow:       0 12px 50px rgba(0,0,0,0.65);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.45);
  --glow-gold:    0 0 50px rgba(200,146,26,0.18);
  --glow-red:     0 0 50px rgba(123,32,32,0.28);

  /* Shape */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h:     80px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; direction: rtl; scroll-behavior: smooth; }
html[dir="ltr"] { direction: ltr; }
body {
  font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Warm ambient glow */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 5% 70%, rgba(123,32,32,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 95% 15%, rgba(200,146,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(90,26,20,0.08) 0%, transparent 70%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.gold-text { color: var(--gold); }
.phone-ltr { direction: ltr; unicode-bidi: embed; display: inline; }

/* ── Section ornament ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-badge::before,
.section-badge::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-desc { color: var(--text-dim); max-width: 520px; margin-bottom: 44px; line-height: 1.8; }

/* Ornamental separator */
.ornament-sep {
  display: flex; align-items: center; gap: 14px;
  width: 180px; margin: 28px auto;
}
.ornament-sep .line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.5;
}
.ornament-sep .line.rev { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament-sep .gem { color: var(--gold); font-size: 0.6rem; opacity: 0.8; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0.55s;
}
.btn:hover::after { left: 100%; }

.btn-primary {
  background: var(--red); color: var(--white);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 22px rgba(123,32,32,0.38);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,32,32,0.5); }

.btn-gold {
  background: var(--gold); color: #1A0800; font-weight: 800;
  box-shadow: 0 4px 22px rgba(200,146,26,0.32);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,146,26,0.45); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(200,146,26,0.45);
}
.btn-outline-gold:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--border-h); transform: translateY(-2px); }

/* ── Card base ──────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-card), var(--glow-gold);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  background: rgba(22,10,4,0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.header-inner {
  width: 100%; max-width: 1440px;
  margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; text-decoration: none;
}
.logo-img-wrap {
  width: 52px; height: 52px;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  border: 1.5px solid rgba(200,146,26,0.3);
  box-shadow: 0 0 16px rgba(200,146,26,0.15);
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.logo-text-stack { display: flex; flex-direction: column; }
.logo-name { font-size: 0.94rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-tag { font-size: 0.61rem; color: var(--gold); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative;
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-dim); transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-toggle {
  width: 44px; height: 44px; border-radius: 50px;
  background: rgba(200,146,26,0.08);
  border: 1.5px solid rgba(200,146,26,0.28);
  color: var(--gold);
  font-family: inherit; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lang-toggle:hover { background: rgba(200,146,26,0.16); }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.header-phone:hover { background: var(--gold-dim); border-color: var(--gold); }
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  background: rgba(200,146,26,0.06);
  border: 1px solid var(--border);
  border-radius: 11px; color: var(--text-dim);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1.1rem;
}
.cart-btn:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--border-h); }
.cart-count {
  position: absolute; top: -4px; left: -4px;
  width: 18px; height: 18px;
  background: var(--red); color: #fff;
  font-size: 0.62rem; font-weight: 700;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}
.cart-count.visible { display: flex; }
.order-now-btn { display: flex; }

.hamburger {
  display: none; flex-direction: column; gap: 4.5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none;
  cursor: pointer; padding: 0;
  border-radius: 10px; transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.05); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dim); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(12,8,6,0.98);
  backdrop-filter: blur(24px);
  z-index: 999; padding: 12px 16px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: flex; align-items: center;
  padding: 13px 16px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700;
  color: var(--text-dim); transition: var(--transition);
  border-bottom: 1px solid var(--border-sub);
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); background: var(--gold-dim); }
.mobile-call-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; margin-top: 12px;
  border-radius: var(--radius);
  background: rgba(200,146,26,0.08);
  border: 1px solid rgba(200,146,26,0.22);
  color: var(--gold); font-weight: 700; font-size: 0.94rem;
  direction: ltr; justify-content: center;
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-img-fallback { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(22,10,4,0.97) 0%, rgba(22,10,4,0.55) 50%, rgba(22,10,4,0.15) 100%);
}
/* Vignette sides */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, transparent 40%, rgba(12,8,6,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 780px; width: 100%;
}

/* Hero Logo */
.hero-logo-wrap {
  position: relative;
  margin: 0 auto 32px;
  width: 140px; height: 140px;
}
.hero-logo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(200,146,26,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: logo-pulse 3.5s ease-in-out infinite;
  z-index: 0;
}
@keyframes logo-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-logo-frame {
  position: relative; z-index: 1;
  width: 140px; height: 140px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(200,146,26,0.5);
  box-shadow:
    0 0 0 6px rgba(200,146,26,0.06),
    0 0 0 12px rgba(200,146,26,0.03),
    0 20px 60px rgba(0,0,0,0.6);
}
.hero-logo-frame img { width: 100%; height: 100%; object-fit: contain; }

.hero-ornament {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Hero eyebrow — small English brand name */
.hero-eyebrow {
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}
.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 8px 60px rgba(0,0,0,0.6);
}
/* Gold tagline with flanking lines */
.hero-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-tagline-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,26,0.6));
}
.hero-tagline-line.rev { background: linear-gradient(to left, transparent, rgba(200,146,26,0.6)); }
/* Shimmer gold tagline below the title */
.hero-tagline-gold {
  font-size: clamp(0.88rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-text 4s linear infinite;
  white-space: nowrap;
}
.hero-title .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  color: rgba(237,217,192,0.7);
  max-width: 500px; margin: 0 auto 34px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-ctas .btn { min-width: 158px; padding: 14px 34px; font-size: 1rem; }

.hero-stats {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 0;
  flex-wrap: wrap; justify-content: center;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 26px; position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 10%; height: 80%; width: 1px;
  background: var(--border);
}
.stat-num { font-size: 1.35rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.67rem; color: var(--text-dim); margin-top: 3px; }

/* ══════════════════════════════════════════════
   FEATURED DISHES
   ══════════════════════════════════════════════ */
.featured-with-video {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: stretch;
}
.featured-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  min-height: 320px;
}
.featured-video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.featured-card:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: var(--glow-gold); }
.featured-card:hover .featured-img { transform: scale(1.07); }
.featured-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,8,6,0.96) 0%, rgba(12,8,6,0.3) 55%, transparent 100%); }
.featured-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.featured-badge {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 13px; border-radius: 50px;
  margin-bottom: 10px;
}
.featured-badge.badge-gold { background: var(--gold); color: #1A0800; }
.featured-name { font-size: 1.22rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.featured-desc {
  font-size: 0.79rem; color: var(--text-dim);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-footer { display: flex; align-items: center; justify-content: space-between; }
.featured-price { font-size: 1.08rem; font-weight: 700; color: var(--gold); }
.featured-price small { font-size: 0.65rem; color: var(--text-dim); font-weight: 400; }
.featured-cta {
  display: flex; align-items: center; gap: 5px;
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  transition: gap 0.2s ease;
}
.featured-card:hover .featured-cta { gap: 10px; }

/* ══════════════════════════════════════════════
   LOCATION / BRANCH SECTION
   ══════════════════════════════════════════════ */
.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.location-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.location-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover .location-photo img { transform: scale(1.04); }
.location-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(31,21,8,0.8) 0%, transparent 60%);
}
.location-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.location-name {
  font-size: 1.5rem; font-weight: 900; color: var(--white);
  margin-bottom: 4px;
}
.location-area { font-size: 0.88rem; color: var(--gold); margin-bottom: 4px; }
.location-info-list { display: flex; flex-direction: column; gap: 10px; }
.location-info-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-dim);
}
.location-info-row .ico { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.location-info-row .ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.location-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.location-actions .btn { flex: 1; min-width: 130px; padding: 11px 18px; font-size: 0.84rem; }

/* ══════════════════════════════════════════════
   SVG ICON SYSTEM
   ══════════════════════════════════════════════ */
.icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.1em; height: 1.1em; flex-shrink: 0; color: inherit;
}
.icon svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════
   SOCIAL SECTION — Professional
   ══════════════════════════════════════════════ */
.social-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.social-pro-card {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.social-pro-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0; transition: opacity 0.3s;
}
.social-pro-card.instagram::after { background: linear-gradient(90deg,#f09433,#dc2743,#bc1888); }
.social-pro-card.facebook::after  { background: #1877f2; }
.social-pro-card.whatsapp::after  { background: #25D366; }
.social-pro-card.tiktok::after    { background: linear-gradient(90deg,#69C9D0,#EE1D52); }
.social-pro-card:hover { transform: translateY(-3px); border-color: var(--border-h); box-shadow: var(--shadow-card); }
.social-pro-card:hover::after { opacity: 1; }
.social-pro-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.social-pro-icon svg { width: 26px; height: 26px; fill: #fff; }
.social-pro-card.instagram .social-pro-icon { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-pro-card.facebook  .social-pro-icon { background: #1877f2; }
.social-pro-card.whatsapp  .social-pro-icon { background: linear-gradient(135deg,#25D366,#128C7E); }
.social-pro-card.tiktok    .social-pro-icon { background: #111; border: 1px solid rgba(105,201,208,0.3); }
.social-pro-info { flex: 1; min-width: 0; }
.social-pro-name { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.social-pro-cta  { font-size: 0.78rem; color: var(--text-dim); }
.social-pro-arrow {
  width: 20px; height: 20px; color: var(--gold);
  opacity: 0.4; transition: var(--transition); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.social-pro-arrow svg { width: 100%; height: 100%; stroke: currentColor; fill: none; }
html[dir="rtl"] .social-pro-arrow svg { transform: scaleX(-1); }
.social-pro-card:hover .social-pro-arrow { opacity: 1; }

/* ══════════════════════════════════════════════
   VIDEO SHOWCASE
   ══════════════════════════════════════════════ */
.video-showcase-wrap {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
  position: relative;
}
.showcase-video {
  width: 100%;
  display: block;
}
@media (max-width: 500px) {
  .video-showcase-wrap { max-width: 100%; border-radius: 16px; }
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section { position: relative; overflow: hidden; padding: 110px 0; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg-overlay { position: absolute; inset: 0; background: rgba(12,8,6,0.87); }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(123,32,32,0.28) 0%, transparent 70%);
  z-index: 0;
}
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 28px; }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-desc { color: var(--text-dim); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn { min-width: 160px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; margin-bottom: 48px; }
.footer-brand { max-width: 290px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-img { width: 48px; height: 48px; border-radius: 11px; overflow: hidden; background: #fff; border: 1.5px solid rgba(200,146,26,0.28); }
.footer-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.79rem; color: var(--text-dim); margin-bottom: 22px; line-height: 1.75; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(200,146,26,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.88rem;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-col h4 {
  font-size: 0.86rem; font-weight: 700; color: var(--white);
  margin-bottom: 18px; padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-size: 0.82rem; color: var(--text-dim);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--gold); padding-inline-start: 4px; }
.footer-contact-row {
  display: flex; gap: 10px;
  font-size: 0.8rem; color: var(--text-dim);
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact-row .ico { flex-shrink: 0; color: var(--gold); margin-top: 2px; width: 15px; height: 15px; }
.footer-contact-row .ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--text-dim); }

/* ══════════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
html[dir="ltr"] .cart-drawer { left: 0; right: auto; transform: translateX(-100%); border-left: none; border-right: 1px solid var(--border); }
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.cart-close-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: none;
  color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem;
}
.cart-close-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 200px; gap: 10px; text-align: center;
}
.cart-empty-icon { width: 48px; height: 48px; opacity: 0.35; color: var(--text-dim); }
.cart-empty-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-empty p { color: var(--text-dim); font-size: 0.9rem; }
.cart-empty span { font-size: 0.78rem; color: var(--muted); }
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--border-sub);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { flex: 1; font-size: 0.87rem; font-weight: 600; color: var(--text); }
.cart-item-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.qty-controls {
  display: flex; align-items: center; gap: 6px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 2px 8px;
}
.qty-btn { background: none; border: none; color: var(--text-dim); font-size: 1rem; cursor: pointer; padding: 2px 3px; transition: var(--transition); }
.qty-btn:hover { color: var(--gold); }
.qty-num { font-size: 0.88rem; font-weight: 700; color: var(--white); min-width: 18px; text-align: center; }
.remove-item-btn { background: none; border: none; color: var(--muted); font-size: 0.88rem; cursor: pointer; transition: var(--transition); padding: 4px; }
.remove-item-btn:hover { color: #e53935; }
.cart-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border); flex-shrink: 0;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.delivery-note {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 10px;
  background: rgba(200,146,26,0.07);
  border: 1px solid rgba(200,146,26,0.18);
  font-size: 0.77rem; color: var(--gold); margin-bottom: 10px;
}
.free-delivery-badge { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.3); color: #66bb6a; }
.cod-badge { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--text-dim); margin-bottom: 12px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 0.87rem; color: var(--text-dim); }
.cart-total-value { font-size: 1.08rem; font-weight: 700; color: var(--white); }
.proceed-btn {
  width: 100%; padding: 13px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 18px rgba(123,32,32,0.38);
}
.proceed-btn:hover { background: var(--red-hover); }
.proceed-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ══════════════════════════════════════════════
   CHECKOUT MODAL
   ══════════════════════════════════════════════ */
.checkout-modal {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  z-index: 2002;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
html[dir="ltr"] .checkout-modal { left: 0; right: auto; transform: translateX(-100%); border-left: none; border-right: 1px solid var(--border); }
.checkout-modal.open { transform: translateX(0); }
.checkout-header {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.back-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: none;
  color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem;
}
.back-btn:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.checkout-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.checkout-body { flex: 1; overflow-y: auto; padding: 18px 20px; }
.co-section-title {
  font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 12px; padding-bottom: 7px;
  border-bottom: 1px solid var(--border-sub);
}
.co-field { margin-bottom: 12px; }
.co-field label { display: block; font-size: 0.79rem; color: var(--text-dim); margin-bottom: 5px; }
.co-field input, .co-field textarea {
  width: 100%;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: inherit; font-size: 16px;
  padding: 11px 13px;
  transition: var(--transition); outline: none; resize: none;
}
.co-field input:focus, .co-field textarea:focus { border-color: var(--gold); background: var(--card-hover); }
.co-field input.field-error, .co-field textarea.field-error { border-color: var(--red); background: rgba(123,32,32,0.08); box-shadow: 0 0 0 2px rgba(180,30,30,0.25); }
.co-field input.field-error::placeholder, .co-field textarea.field-error::placeholder { color: var(--red); opacity: 0.7; }
@keyframes field-shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
.field-shake { animation: field-shake 0.35s ease; }

/* ── Order Success Modal ── */
.order-success-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
.order-success-modal {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}
.success-check {
  width: 64px; height: 64px;
  background: #2e7d32;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.order-success-modal h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; }
.order-success-modal p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.order-success-modal .btn { min-width: 120px; }
.co-field textarea { min-height: 72px; }
.co-required { color: var(--red); margin-inline-start: 2px; }
.co-item-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid var(--border-sub);
  font-size: 0.81rem;
}
.co-item-row:last-child { border-bottom: none; }
.co-item-name { color: var(--text); }
.co-item-price { color: var(--gold); font-weight: 600; }
.co-total-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.84rem; color: var(--text-dim); }
.co-total-row.grand { font-size: 1rem; font-weight: 700; color: var(--white); padding-top: 10px; border-top: 1px solid var(--border-sub); }
.checkout-footer {
  padding: 14px 20px; border-top: 1px solid var(--border); flex-shrink: 0;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.submit-btn {
  width: 100%; padding: 13px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.submit-btn:hover { background: var(--red-hover); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ══════════════════════════════════════════════
   TOAST + BUMP
   ══════════════════════════════════════════════ */
.add-toast {
  position: fixed; bottom: 80px;
  left: 50%; transform: translateX(-50%) translateY(14px);
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.36);
  color: #6abf6e;
  padding: 10px 26px; border-radius: 50px;
  font-size: 0.87rem; font-weight: 600;
  z-index: 3000; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; white-space: nowrap;
}
.add-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@keyframes cartBump {
  0%,100% { transform: scale(1) rotate(0); }
  25% { transform: scale(1.22) rotate(-6deg); }
  50% { transform: scale(1.16) rotate(5deg); }
  75% { transform: scale(1.1) rotate(-3deg); }
}
.cart-btn.bump { animation: cartBump 0.5s ease; }

/* ══════════════════════════════════════════════
   CONFLICT MODAL
   ══════════════════════════════════════════════ */
.conflict-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(5px);
}
.conflict-modal {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px;
  max-width: 400px; width: 100%; text-align: center;
}
.conflict-icon { font-size: 2.5rem; margin-bottom: 14px; }
.conflict-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.conflict-msg { font-size: 0.84rem; color: var(--text-dim); margin-bottom: 22px; line-height: 1.75; }
.conflict-btns { display: flex; gap: 10px; }
.conflict-btns .btn { flex: 1; padding: 11px; font-size: 0.84rem; }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 50px) 0 56px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,8,6,0.95) 0%, rgba(12,8,6,0.82) 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2 L58 30 L30 58 L2 30 Z' fill='none' stroke='rgba(200,146,26,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.page-hero p { color: var(--text-dim); }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-dim); margin-top: 12px; }
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--muted); }

/* ══════════════════════════════════════════════
   MENU PAGE
   ══════════════════════════════════════════════ */
.branch-picker-wrap {
  padding: 18px 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.branch-picker-wrap::-webkit-scrollbar { display: none; }
.branch-picker { display: flex; gap: 8px; padding: 0 28px; min-width: max-content; }
.branch-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 22px; border-radius: 50px;
  background: var(--card-bg); border: 1.5px solid var(--border);
  color: var(--text-dim); font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; font-family: inherit;
}
.branch-pill:hover { border-color: var(--gold); color: var(--text); }
.branch-pill.active { background: rgba(123,32,32,0.14); border-color: var(--red); color: var(--white); }
.branch-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.branch-pill.active .dot { background: var(--red); }

.cat-tabs-wrap {
  position: sticky; top: var(--header-h); z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-tabs-wrap::-webkit-scrollbar { display: none; }
.cat-tabs { display: flex; padding: 0 28px; min-width: max-content; }
.cat-tab {
  padding: 14px 20px;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim); font-family: inherit;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-sections { padding: 28px 28px 70px; max-width: 1600px; margin: 0 auto; }
.menu-section { margin-bottom: 44px; scroll-margin-top: 160px; }
.menu-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.menu-section-title { font-size: 1.05rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.menu-section-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(200,146,26,0.09);
  border: 1px solid rgba(200,146,26,0.22);
  color: var(--gold); font-size: 0.64rem; font-weight: 700;
  padding: 2px 10px; border-radius: 50px;
}
.menu-section-line { flex: 1; height: 1px; background: var(--border); }

.dish-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.dish-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: var(--transition);
}
.dish-card:hover { transform: translateY(-2px); border-color: var(--border-h); box-shadow: var(--shadow-card); }
.dish-photo-hold { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-3); }
.dish-photo-hold img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.42s ease; }
.dish-card:hover .dish-photo-hold img { transform: scale(1.07); }
.dish-badge {
  position: absolute; top: 6px; right: 6px;
  font-size: 0.57rem; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}
html[dir="ltr"] .dish-badge { right: 6px; left: auto; }
.badge-popular { background: var(--red); color: #fff; }
.badge-new { background: var(--gold); color: #1A0800; }
.dish-body { padding: 8px 10px 10px; }
.dish-name {
  font-size: 0.77rem; font-weight: 600; color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.4;
}
.dish-price-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.dish-price { font-size: 0.82rem; font-weight: 700; color: var(--gold); }
.dish-price small { font-size: 0.6rem; color: var(--text-dim); font-weight: 400; }
.dish-add-btn {
  width: 26px; height: 26px;
  background: var(--red); color: #fff;
  border: none; border-radius: 7px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0; line-height: 1;
}
.dish-add-btn:hover { background: var(--red-hover); }
.dish-add-btn.success { background: #4caf50; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.about-story-text p { color: var(--text-dim); line-height: 1.9; margin-bottom: 16px; }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px;
  text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.value-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-desc { font-size: 0.81rem; color: var(--text-dim); line-height: 1.75; }

.contact-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.contact-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 20px;
  text-align: center; cursor: pointer; transition: var(--transition);
  text-decoration: none; display: block;
}
.contact-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.contact-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(200,146,26,0.1);
  border: 1px solid rgba(200,146,26,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--gold);
}
.contact-card .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-card p { font-size: 0.78rem; color: var(--text-dim); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .dish-grid { grid-template-columns: repeat(5,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :nth-child(4) { grid-column: 1/-1; }
  .location-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(4,1fr); }
  .featured-with-video { grid-template-columns: 1fr; }
  .featured-video-card { display: none; }
  .featured-grid { grid-template-columns: repeat(2,1fr); }
  .featured-grid > :nth-child(3) { display: none; }
  .social-grid { grid-template-columns: repeat(2,1fr); }
  .location-card { grid-template-columns: 1fr; }
  .location-photo { min-height: 260px; }
  .location-photo-overlay { background: linear-gradient(to top, rgba(31,21,8,0.9) 0%, transparent 60%); }
  .about-story-grid { gap: 40px; }
  .contact-cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .order-now-btn { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .dish-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-img { order: -1; max-height: 280px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .dish-grid { grid-template-columns: repeat(2,1fr); }
  .featured-grid { grid-template-columns: 1fr; gap: 14px; }
  .featured-grid > :nth-child(3) { display: block; }
  .hero-stats { padding: 10px 0; }
  .stat-item { padding: 0 14px; }
  .stat-num { font-size: 1.05rem; }
  .hero-logo-wrap { width: 110px; height: 110px; }
  .hero-logo-frame { width: 110px; height: 110px; border-radius: 22px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .social-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .cart-drawer, .checkout-modal { width: 100%; border-left: none; border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :nth-child(4) { grid-column: auto; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; }
}
@media (max-width: 480px) {
  .logo-tag { display: none; }
  .header-inner { gap: 8px; }
  .hero-title { font-size: clamp(1.9rem,9vw,2.8rem); }
  .hero-logo-wrap { width: 96px; height: 96px; }
  .hero-logo-frame { width: 96px; height: 96px; border-radius: 18px; }
}
