    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --fire: #c0392b; --ember: #e74c3c; --gold: #d4a017;
      --dark: #1a0a00; --dark2: #2d1200; --smoke: #3d2010;
      --text: #f5e6c8; --muted: #b89060; --nav-h: 70px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Tajawal', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; direction: rtl; }

    /* LOADER */
    #loader { position: fixed; inset: 0; z-index: 9999; background: var(--dark); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; transition: opacity 0.6s ease, visibility 0.6s ease; }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-icon { font-size: 64px; animation: flamePulse 0.8s ease-in-out infinite alternate; }
    .loader-text { font-family: 'Amiri', serif; font-size: 1.6rem; color: var(--gold); }
    .loader-bar { width: 220px; height: 3px; background: var(--smoke); border-radius: 10px; overflow: hidden; }
    .loader-fill { height: 100%; background: linear-gradient(90deg, var(--fire), var(--gold)); animation: loadFill 2s ease forwards; }
    @keyframes loadFill { from{width:0} to{width:100%} }
    @keyframes flamePulse {
      from { transform: scale(1) rotate(-5deg); filter: drop-shadow(0 0 10px #e74c3b88); }
      to   { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 22px #e74c3bcc); }
    }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.from-left  { transform: translateX(-60px); }
    .reveal.from-right { transform: translateX(60px); }
    .reveal.from-top   { transform: translateY(-40px); }
    .reveal.visible    { opacity: 1; transform: translate(0); }

    /* NAV */
    nav { position: fixed; top: 0; right: 0; left: 0; height: var(--nav-h); background: rgba(26,10,0,0.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(212,160,23,0.2); z-index: 1000; display: flex; align-items: center; padding: 0 5%; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
    .nav-logo img.icon { border-radius: 20px; width: 40px; height: 40px; object-fit: cover; flex-shrink: 0; }
    .nav-logo span.name { font-family: 'Amiri', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav-links a { color: var(--text); text-decoration: none; font-size: 0.88rem; font-weight: 500; padding: 8px 10px; border-radius: 6px; transition: all 0.3s; position: relative; white-space: nowrap; }
    .nav-links a::after { content:''; position:absolute; bottom:4px; right:10px; left:10px; height:2px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; transform-origin:center; }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.35s ease; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE MENU */
    .mobile-menu { display: none; position: fixed; top: var(--nav-h); right: 0; left: 0; background: rgba(20,8,0,0.98); backdrop-filter: blur(16px); border-bottom: 2px solid rgba(212,160,23,0.2); z-index: 998; padding: 8px 0 16px; opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease, transform 0.3s ease; }
    .mobile-menu.open { display: block; opacity: 1; transform: translateY(0); }
    .mobile-menu a { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 600; padding: 15px 6%; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, background 0.2s; }
    .mobile-menu a:hover { color: var(--gold); background: rgba(212,160,23,0.06); }

    /* HERO */
    #hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: var(--nav-h); text-align: center; }
    .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(192,57,43,0.25) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 30% 80%, rgba(212,160,23,0.12) 0%, transparent 60%), linear-gradient(180deg, #1a0a00 0%, #2d1200 40%, #1a0a00 100%); }
    .hero-bg::after { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(212,160,23,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(212,160,23,0.04) 1px,transparent 1px); background-size: 60px 60px; }
    .embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .ember { position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); animation: riseEmber linear infinite; opacity: 0; }
    .ember:nth-child(1)  { left:10%; animation-duration:6s;   animation-delay:0s;   width:3px; height:3px; }
    .ember:nth-child(2)  { left:20%; animation-duration:8s;   animation-delay:1s;   background:var(--fire); width:5px; height:5px; }
    .ember:nth-child(3)  { left:33%; animation-duration:7s;   animation-delay:2s; }
    .ember:nth-child(4)  { left:45%; animation-duration:5s;   animation-delay:0.5s; background:var(--ember); }
    .ember:nth-child(5)  { left:55%; animation-duration:9s;   animation-delay:3s;   width:6px; height:6px; }
    .ember:nth-child(6)  { left:65%; animation-duration:6.5s; animation-delay:1.5s; }
    .ember:nth-child(7)  { left:75%; animation-duration:7.5s; animation-delay:0.8s; background:var(--fire); }
    .ember:nth-child(8)  { left:85%; animation-duration:5.5s; animation-delay:2.5s; width:3px; height:3px; }
    .ember:nth-child(9)  { left:92%; animation-duration:8.5s; animation-delay:4s; }
    .ember:nth-child(10) { left:3%;  animation-duration:6s;   animation-delay:3.5s; background:var(--gold); width:5px; height:5px; }
    .ember:nth-child(11) { left:27%; animation-duration:7s;   animation-delay:5s; }
    .ember:nth-child(12) { left:58%; animation-duration:9s;   animation-delay:1.2s; background:var(--ember); }
    @keyframes riseEmber { 0%{bottom:-10px;opacity:0;transform:translateX(0) scale(1)} 10%{opacity:1} 50%{transform:translateX(20px) scale(0.8)} 80%{opacity:0.4} 100%{bottom:100%;opacity:0;transform:translateX(-20px) scale(0.3)} }

    .hero-content { position: relative; z-index: 2; max-width: 750px; padding: 20px; width: 100%; }
    .hero-badge { display: inline-block; background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.35); color: var(--gold); font-size: 0.85rem; font-weight: 700; padding: 6px 18px; border-radius: 20px; margin-bottom: 22px; }
    .hero-title { font-family: 'Amiri', serif; font-size: clamp(2.2rem, 8vw, 5.5rem); font-weight: 700; line-height: 1.2; color: #fff; text-shadow: 0 0 40px rgba(192,57,43,0.5); margin-bottom: 12px; }
    .hero-title .highlight { color: var(--gold); text-shadow: 0 0 30px rgba(212,160,23,0.6); }
    .hero-subtitle { font-family: 'Amiri', serif; font-size: clamp(0.92rem, 3vw, 1.4rem); color: var(--muted); margin-bottom: 32px; line-height: 1.8; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--fire),#a93226); color: #fff; text-decoration: none; padding: 13px 26px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; transition: all 0.3s; box-shadow: 0 4px 20px rgba(192,57,43,0.4); }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(192,57,43,0.6); }
    .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--gold); text-decoration: none; padding: 12px 26px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; border: 1.5px solid var(--gold); transition: all 0.3s; }
    .btn-outline:hover { background: rgba(212,160,23,0.12); transform: translateY(-3px); }
    .hero-social { display: flex; justify-content: center; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
    .social-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 15px; border-radius: 8px; font-size: 0.86rem; font-weight: 600; text-decoration: none; color: #fff; transition: all 0.3s; }
    .social-btn.whatsapp  { background: #075e54; }
    .social-btn.instagram { background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045); }
    .social-btn.tiktok    { background: #111; border: 1px solid #333; }
    .social-btn.snapchat  { background: #FFFC00; color: #000; }
    .social-btn:hover { transform: translateY(-3px); filter: brightness(1.12); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
    .social-icon { font-size: 1rem; }

    /* SECTIONS */
    section { padding: 90px 5%; }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-label { display: inline-block; color: var(--gold); font-size: 0.8rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
    .section-title { font-family: 'Amiri', serif; font-size: clamp(1.8rem,5vw,3rem); font-weight: 700; color: #fff; line-height: 1.3; }
    .section-divider { width: 60px; height: 3px; background: linear-gradient(90deg,var(--fire),var(--gold)); margin: 16px auto 0; border-radius: 3px; }

    /* STATS */
    #stats { background: linear-gradient(135deg,var(--fire) 0%,#922b21 100%); padding: 50px 5%; }
    .stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; max-width: 900px; margin: 0 auto; }
    .stat-item { text-align: center; min-width: 100px; }
    .stat-num { font-family: 'Amiri', serif; font-size: clamp(2rem,6vw,3.5rem); font-weight: 700; color: #fff; display: block; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
    .stat-lbl { font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500; }

    /* ABOUT */
    #about { background: var(--dark2); position: relative; overflow: hidden; }
    #about::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 60% at 80% 50%,rgba(192,57,43,0.08) 0%,transparent 70%); }
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; border-radius: 16px; object-fit: cover; height: 420px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .about-img-wrap::before { content:''; position:absolute; inset:-6px; border-radius:20px; background: linear-gradient(135deg,var(--fire),var(--gold),transparent); z-index:-1; opacity:0.5; }
    .about-badge { position: absolute; bottom: -20px; left: -20px; background: linear-gradient(135deg,var(--fire),#922b21); color: #fff; padding: 16px 22px; border-radius: 12px; text-align: center; box-shadow: 0 8px 25px rgba(192,57,43,0.5); }
    .about-badge .num { font-size: 1.8rem; font-weight: 900; display: block; }
    .about-badge .lbl { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }
    .about-text p { font-size: 1.05rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
    .feature-item { display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(212,160,23,0.12); border-radius: 10px; padding: 14px; }
    .feature-item .fi { font-size: 1.3rem; flex-shrink: 0; }
    .feature-item span { font-size: 0.9rem; color: var(--text); font-weight: 500; }

    /* MENU */
    #menu { background: var(--dark); overflow-x: hidden;}
    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
    .menu-card { background: var(--dark2); border: 1px solid rgba(212,160,23,0.1); border-radius: 16px; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s; }
    .menu-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(192,57,43,0.3); border-color: rgba(212,160,23,0.35); }
    .menu-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .menu-card:hover .menu-card-img { transform: scale(1.06); }
    .menu-card-body { padding: 18px; }
    .menu-card-body h3 { font-family: 'Amiri', serif; font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
    .menu-card-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
    .menu-price { display: flex; justify-content: flex-end; }
    .order-btn { background: linear-gradient(135deg,var(--fire),#a93226); color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-size: 0.88rem; font-weight: 700; cursor: pointer; font-family: 'Tajawal',sans-serif; transition: all 0.3s; }
    .order-btn:hover { background: var(--ember); transform: scale(1.05); }

    /* GALLERY */
    #gallery { background: var(--dark2); position: relative; overflow-x: hidden;}
    #gallery::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 70% at 20% 50%,rgba(212,160,23,0.05) 0%,transparent 70%); }
    .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 14px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
    .gallery-grid .gall-item:nth-child(1) { grid-column: span 2; }
    .gallery-grid .gall-item:nth-child(5) { grid-column: span 2; }
    .gall-item { overflow: hidden; border-radius: 12px; position: relative; cursor: pointer; }
    .gall-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.5s ease; }
    .gall-item:hover img { transform: scale(1.1); filter: brightness(0.75); }
    .gall-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%,rgba(26,10,0,0.85)); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 14px; }
    .gall-item:hover .gall-overlay { opacity: 1; }
    .gall-overlay span { color: var(--gold); font-size: 1rem; font-weight: 700; font-family: 'Amiri', serif; }

    /* ===== CONTACT ===== */
    #contact { background: var(--dark); overflow-x: hidden;}

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: start;
    }

    /* Left: channels */
    .contact-info h3 { font-family: 'Amiri', serif; font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
    .contact-info p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 26px; }
    .contact-channels { display: flex; flex-direction: column; gap: 12px; }
    .channel-btn { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 10px; text-decoration: none; color: #fff; font-size: 0.93rem; font-weight: 600; transition: all 0.3s; }
    .channel-btn .ch-icon { font-size: 1.4rem; flex-shrink: 0; }
    .channel-btn .ch-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
    .channel-btn.wa { background: rgba(7,94,84,0.25); border: 1px solid rgba(37,211,102,0.3); }
    .channel-btn.wa:hover { background: rgba(7,94,84,0.5); transform: translateX(-6px); }
    .channel-btn.ig { background: rgba(131,58,180,0.2); border: 1px solid rgba(253,29,29,0.3); }
    .channel-btn.ig:hover { background: rgba(131,58,180,0.4); transform: translateX(-6px); }
    .channel-btn.tk { background: rgba(1,1,1,0.4); border: 1px solid rgba(255,255,255,0.15); }
    .channel-btn.tk:hover { background: rgba(1,1,1,0.65); transform: translateX(-6px); }
    .channel-btn.sn { background: rgba(255,252,0,0.1); border: 1px solid rgba(255,252,0,0.3); color: #FFFC00; }
    .channel-btn.sn:hover { background: rgba(255,252,0,0.2); transform: translateX(-6px); }

    /* Right: Map box */
    .map-box {
      background: var(--dark2);
      border: 1px solid rgba(212,160,23,0.15);
      border-radius: 16px;
      overflow: hidden;
    }
    .map-box iframe {
      width: 100%;
      height: 320px;
      display: block;
      border: none;
      filter: grayscale(30%) contrast(1.1);
    }
    .map-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 18px;
    }
    .map-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 16px;
      border-radius: 10px;
      font-family: 'Tajawal', sans-serif;
      font-size: 0.93rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
    }
    .map-btn.call {
      background: linear-gradient(135deg, #27ae60, #1e8449);
      color: #fff;
      box-shadow: 0 4px 16px rgba(39,174,96,0.35);
    }
    .map-btn.call:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(39,174,96,0.5);
    }
    .map-btn.directions {
      background: linear-gradient(135deg, var(--fire), #a93226);
      color: #fff;
      box-shadow: 0 4px 16px rgba(192,57,43,0.35);
    }
    .map-btn.directions:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(192,57,43,0.55);
    }

    /* FOOTER */
    footer { background: #110500; border-top: 1px solid rgba(212,160,23,0.1); padding: 28px 5%; text-align: center; }
    footer p { color: var(--muted); font-size: 0.9rem; }
    footer span { color: var(--fire); }
    footer a { color: var(--gold); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-links { display: none !important; }
      .hamburger { display: flex; }
      .about-inner { grid-template-columns: 1fr; gap: 50px; }
      .about-img-wrap img { height: 300px; }
      .about-badge { bottom: -14px; left: 10px; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 190px; gap: 10px; }
      .gallery-grid .gall-item:nth-child(1),
      .gallery-grid .gall-item:nth-child(5) { grid-column: span 1; }
      .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    }

    @media (max-width: 600px) {
      section { padding: 60px 4%; }
      #stats { padding: 38px 4%; }
      nav { padding: 0 4%; }
      .nav-logo span.name { font-size: 1rem; }
      .hero-content { padding: 12px; }
      .hero-badge { font-size: 0.7rem; padding: 5px 11px; margin-bottom: 14px; }
      .hero-title { font-size: 1.95rem; }
      .hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
      .hero-actions { gap: 10px; }
      .btn-primary,.btn-outline { padding: 11px 20px; font-size: 0.88rem; }
      .hero-social { gap: 8px; margin-top: 22px; }
      .social-btn { padding: 8px 11px; font-size: 0.78rem; }
      .section-header { margin-bottom: 36px; }
      .stats-inner { gap: 16px; }
      .stat-num { font-size: 1.8rem; }
      .stat-lbl { font-size: 0.78rem; }
      .about-img-wrap img { height: 240px; }
      .about-text p { font-size: 0.92rem; }
      .about-features { grid-template-columns: 1fr 1fr; gap: 9px; }
      .feature-item { padding: 10px 8px; }
      .feature-item span { font-size: 0.79rem; }
      .feature-item .fi { font-size: 1.1rem; }
      .menu-grid { grid-template-columns: 1fr; gap: 16px; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; gap: 8px; }
      .map-box iframe { height: 260px; }
      .map-actions { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
      .map-btn { font-size: 0.86rem; padding: 11px 10px; }
      .channel-btn { padding: 11px 12px; font-size: 0.84rem; gap: 10px; }
      .channel-btn .ch-icon { font-size: 1.2rem; }
    }

    @media (max-width: 390px) {
      .hero-title { font-size: 1.7rem; }
      .hero-social { flex-direction: column; align-items: center; }
      .social-btn { width: 78%; justify-content: center; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary,.btn-outline { width: 85%; justify-content: center; }
      .about-features { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
      .map-actions { grid-template-columns: 1fr; }
    }