/* =========================================================
   SONG Coffee، Digital Proof
   Palette & type derived from the real brand (logo, menu, photos).
   Navy + copper + cream. Musical-staff signature motif.
   ========================================================= */

:root {
  /* Brand palette (من اللوقو والصور) */
  --navy-900: #0a1830;   /* أعمق كحلي، خلفية الليل */
  --navy-800: #0f2240;
  --navy-700: #163258;   /* أزرق الأسقف والكاونتر */
  --navy-600: #1f4270;
  --cream-050: #faf6ef;  /* أبيض الجدران الدافئ */
  --cream-100: #f3ecdf;
  --cream-200: #e8dcc8;
  --camel:     #c9a074;  /* جلد الكراسي */
  --copper:    #c0855a;  /* نُحاس اللوقو */
  --copper-lt: #d7a577;
  --gold:      #e6c79b;  /* بريق نجمي */
  --ink:       #12203a;  /* نص داكن على الفاتح */
  --ink-soft:  #45536b;

  /* Semantic */
  --bg: var(--cream-050);
  --surface: #ffffff;
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --accent: var(--copper);

  /* Type */
  --font-head: "El Messiri", "Readex Pro", system-ui, sans-serif;
  --font-body: "Readex Pro", system-ui, "Segoe UI", Tahoma, sans-serif;
  --font-latin: "Cormorant Garamond", "El Messiri", serif;

  /* Scale / rhythm */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(10, 24, 48, 0.35);
  --shadow-soft: 0 10px 30px -18px rgba(10, 24, 48, 0.4);
  --space-section: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* الأقسام المرتبطة بالروابط لا يغطيها الهيدر المثبت عند القفز إليها */
main section[id] { scroll-margin-top: 78px; }

/* تصيير كسول للأقسام تحت الطية، المتصفح يتخطى تخطيطها ورسمها حتى الاقتراب منها */
.about, .ambience, .visit, .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* hidden يتغلب على أي display معرف في الأنماط (flex/grid/…) */
[hidden] { display: none !important; }
/* لمسات فورية: إلغاء مهلة النقر المزدوج + وميض لمس بلون الهوية */
a, button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(230, 199, 155, 0.18);
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; margin: 0; }
p { margin: 0; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; }

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  /* Deeper copper for AA contrast on the light cream background (~4.6:1) */
  color: #8a5a30;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.section__title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.accent { color: var(--copper); }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #241405;
  box-shadow: 0 12px 26px -12px rgba(192, 133, 90, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(192, 133, 90, 0.8); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--ghost { background: transparent; border-color: var(--copper); color: var(--copper); padding-block: 0.6rem; }
.btn--ghost:hover { background: var(--copper); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(230, 199, 155, 0.14);
}
/* الزجاج على عنصر زائف: backdrop-filter على الهيدر نفسه يجعله مرجعًا
   للعناصر الـ fixed بداخله فيكسر قائمة الجوال المنزلقة */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 24, 48, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo { width: auto; height: 44px; }
.brand__word {
  font-family: var(--font-latin);
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold);
  display: flex; flex-direction: column; line-height: 0.95;
}
.brand__word small { font-size: 0.55rem; letter-spacing: 0.42em; color: var(--copper-lt); font-family: var(--font-body); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__head, .nav__foot { display: none; } /* عناصر قائمة الجوال فقط */
.nav > a { color: var(--cream-100); font-size: 0.98rem; font-weight: 500; position: relative; padding: 0.2rem 0; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -4px; height: 2px;
  background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform 0.25s var(--ease);
}
.nav > a:not(.btn):hover::after { transform: scaleX(1); }

/* زر زورونا: كبسولة نحاسية زجاجية بأيقونة موقع
   ملاحظة: .nav > a أعلى خصوصية من .btn--ghost، لذا نثبت التصميم هنا بـ .nav .nav__cta */
.nav .nav__cta {
  gap: 0.5rem;
  padding: 0.62rem 1.4rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(215, 165, 119, 0.2), rgba(192, 133, 90, 0.07));
  border: 1px solid rgba(215, 165, 119, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 20px -12px rgba(192, 133, 90, 0.6);
}
.nav .nav__cta::before {
  content: ""; flex: none; width: 15px; height: 15px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.nav .nav__cta:hover {
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  border-color: transparent;
  color: #241405;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -12px rgba(192, 133, 90, 0.8);
}
.nav .nav__cta:active { transform: translateY(1px) scale(0.99); }

.nav-scrim { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 68px);
  display: flex; align-items: center;
  background: radial-gradient(120% 90% at 50% -10%, var(--navy-700), var(--navy-900) 60%);
  color: var(--cream-050);
  overflow: hidden;
  text-align: center;
}
.hero__sky {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 70% 20%, rgba(255,255,255,0.75), transparent),
    radial-gradient(1.6px 1.6px at 40% 70%, rgba(230,199,155,0.9), transparent),
    radial-gradient(1.1px 1.1px at 85% 60%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.3px 1.3px at 55% 45%, rgba(255,255,255,0.65), transparent),
    radial-gradient(1.1px 1.1px at 10% 80%, rgba(230,199,155,0.7), transparent),
    radial-gradient(1.4px 1.4px at 90% 85%, rgba(255,255,255,0.7), transparent);
  opacity: 0.9;
  will-change: opacity; /* طبقة مستقلة: الوميض يعمل على المُركِّب دون إعادة رسم */
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }
.hero__glow {
  position: absolute; inset-inline: 0; bottom: -30%; height: 60%;
  /* التدرج ناعم بذاته، الـ blur كان حملًا زائدًا بلا فائدة مرئية */
  background: radial-gradient(70% 100% at 50% 100%, rgba(192,133,90,0.32), transparent 72%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 3rem; }
.hero__logo {
  width: auto; height: clamp(190px, 26vh, 270px);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.55));
  position: relative; /* فوق الهالة والنجوم */
}

/* ─── هالة اللوقو: توهج نحاسي متدرج + نجوم رباعية تتلألأ فوق غبار نجمي ثابت ─── */
.logo-halo { position: relative; display: inline-block; margin: 0 auto 1.3rem; }

/* التوهج: ضوء قمري بارد خلف اللوقو (تباين حار/بارد يبرز النحاسي بدل أن يذوب فيه)
   + غلالة ذهبية خافتة تبقى بعيدة على الأطراف */
.logo-halo::before {
  content: ""; position: absolute; inset: -22% -72%;
  background:
    radial-gradient(30% 34% at 50% 47%, rgba(173, 199, 235, 0.17), transparent 70%),
    radial-gradient(54% 60% at 50% 48%, rgba(112, 146, 196, 0.09), transparent 74%),
    radial-gradient(72% 78% at 50% 50%, rgba(230, 199, 155, 0.06), transparent 80%);
  pointer-events: none;
}

/* غبار نجمي ثابت خافت، عمق خلف الطبقتين اللامعتين */
.logo-halo::after {
  content: ""; position: absolute; inset: -18% -62%; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 32% 16%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 58% 6%, rgba(230,199,155,0.45), transparent),
    radial-gradient(1px 1px at 6% 40%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 96% 48%, rgba(230,199,155,0.4), transparent),
    radial-gradient(1px 1px at 44% 92%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 74% 32%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 14% 70%, rgba(230,199,155,0.4), transparent);
  opacity: 0.8;
}

.logo-halo__stars {
  position: absolute; inset: -18% -62%; pointer-events: none;
  background-repeat: no-repeat;
  animation: haloTwinkle 5.2s ease-in-out infinite;
  will-change: opacity;
}
/* كل طبقة: نجمتان رباعيتان (SVG) + نقاط متفاوتة الحجم */
.logo-halo__stars--a {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e6c79b'%3E%3Cpath d='M12 0C12.7 6.6 17.4 11.3 24 12c-6.6.7-11.3 5.4-12 12-.7-6.6-5.4-11.3-12-12C6.6 11.3 11.3 6.6 12 0z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0C12.7 6.6 17.4 11.3 24 12c-6.6.7-11.3 5.4-12 12-.7-6.6-5.4-11.3-12-12C6.6 11.3 11.3 6.6 12 0z'/%3E%3C/svg%3E"),
    radial-gradient(1.6px 1.6px at 12% 24%, rgba(255,255,255,0.95), transparent),
    radial-gradient(1.2px 1.2px at 84% 14%, rgba(230,199,155,0.95), transparent),
    radial-gradient(1.8px 1.8px at 90% 60%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1.4px 1.4px at 66% 90%, rgba(255,255,255,0.8), transparent);
  background-size: 15px 15px, 9px 9px, auto, auto, auto, auto;
  background-position: 14% 8%, 80% 76%, 0 0, 0 0, 0 0, 0 0;
}
.logo-halo__stars--b {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0C12.7 6.6 17.4 11.3 24 12c-6.6.7-11.3 5.4-12 12-.7-6.6-5.4-11.3-12-12C6.6 11.3 11.3 6.6 12 0z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e6c79b'%3E%3Cpath d='M12 0C12.7 6.6 17.4 11.3 24 12c-6.6.7-11.3 5.4-12 12-.7-6.6-5.4-11.3-12-12C6.6 11.3 11.3 6.6 12 0z'/%3E%3C/svg%3E"),
    radial-gradient(1.3px 1.3px at 28% 10%, rgba(230,199,155,0.9), transparent),
    radial-gradient(1.7px 1.7px at 5% 54%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.4px 1.4px at 78% 78%, rgba(230,199,155,0.95), transparent),
    radial-gradient(1.2px 1.2px at 38% 94%, rgba(255,255,255,0.8), transparent);
  background-size: 12px 12px, 8px 8px, auto, auto, auto, auto;
  background-position: 90% 20%, 6% 78%, 0 0, 0 0, 0 0, 0 0;
  animation-duration: 6.4s;
  animation-delay: -2.6s;
}
/* وميض عضوي متعدد المراحل، opacity فقط حفاظا على الأداء */
@keyframes haloTwinkle {
  0%, 100% { opacity: 0.2; }
  35% { opacity: 1; }
  55% { opacity: 0.45; }
  75% { opacity: 0.85; }
}

.logo-halo--sm { margin-bottom: 0.9rem; }
.logo-halo--sm::before { inset: -14% -54%; }
.logo-halo--sm::after,
.logo-halo--sm .logo-halo__stars { inset: -10% -46%; }
.hero__eyebrow { color: var(--copper-lt); letter-spacing: 0.18em; font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 4rem); font-weight: 700; letter-spacing: -0.01em; }
.hero__title .accent { color: var(--gold); }
.hero__sub {
  color: rgba(243, 236, 223, 0.82);
  max-width: 40ch; margin: 1.2rem auto 0; font-size: 1.08rem;
}

/* Music staff (signature)، سطر من كتاب نوتة يُعزف بالتتابع */
.music-staff {
  width: min(100%, 470px);
  margin: 1.9rem auto 1.7rem;
  /* تلاشي ناعم على طرفي المدرج */
  -webkit-mask-image: linear-gradient(to left, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to left, transparent, #000 7%, #000 93%, transparent);
}
.music-staff svg { display: block; width: 100%; height: auto; direction: ltr; }
.staff-lines line { stroke: rgba(230, 199, 155, 0.28); stroke-width: 1; }
.music-staff .clef { fill: var(--copper-lt); opacity: 0.95; font-family: serif; }
.music-staff .barline { stroke: rgba(230, 199, 155, 0.4); stroke-width: 1.4; }
.music-staff .barline--thick { stroke-width: 4; }
.mnote ellipse { fill: var(--gold); }
.mnote line { stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; }
.mnote .beam { fill: var(--gold); stroke: none; }
.mnote .flag { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; }
.mnote {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: notePlay 3.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
/* transform + opacity فقط، أنميشن filter كان يعيد الرسم كل إطار ويثقل الجهاز */
@keyframes notePlay {
  0%, 38%, 100% { transform: translateY(0); opacity: 0.58; }
  14% { transform: translateY(-5px); opacity: 1; }
}

.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* مؤشر النزول، ضمن التدفق تحت الأزرار، لا يتداخل مع أي عنصر */
.scroll-hint { display: inline-flex; justify-content: center; margin-top: clamp(1.8rem, 4.5vh, 3rem); padding: 4px 14px; }
.scroll-hint__line {
  position: relative; display: block; width: 2px; height: 46px; border-radius: 2px; overflow: hidden;
  background: linear-gradient(rgba(230,199,155,0.45), rgba(230,199,155,0.06));
}
.scroll-hint__line i {
  position: absolute; top: -14px; inset-inline: 0;
  display: block; width: 2px; height: 14px; border-radius: 2px;
  background: linear-gradient(transparent, var(--gold));
  animation: hintDrop 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes hintDrop { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 80%, 100% { transform: translateY(60px); opacity: 0; } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__text p { color: var(--text-soft); max-width: 52ch; }
.feature-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.2rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list__icon {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--cream-100); color: var(--copper);
  font-size: 1.35rem; border: 1px solid var(--cream-200);
}
.feature-list h3 { font-size: 1.15rem; margin-bottom: 0.15rem; color: var(--ink); }
.feature-list p { font-size: 0.95rem; margin: 0; }

.about__media { position: relative; }
/* الصورة بأبعادها الطبيعية دون قص */
.about__media > img {
  width: 100%; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; inset-inline-start: -22px; bottom: -26px;
  width: 42%; border-radius: var(--radius-sm); overflow: hidden;
  border: 5px solid var(--cream-050); box-shadow: var(--shadow-soft);
}
.about__badge img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* بادج اللوقو: اللوقو وسط خلفية كحلية بنجوم تلمع، بنفس إطار البادج الكريمي */
.about__badge--logo {
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(68% 68% at 50% 42%, rgba(31, 66, 112, 0.6), transparent 80%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900) 78%);
}
.about__badge--logo img {
  width: 50%; aspect-ratio: auto; object-fit: contain;
  position: relative;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.about__badge--logo .logo-halo__stars { inset: 4%; }

/* ---------- Dark sections ---------- */
.section--dark { background: var(--navy-900); color: var(--cream-050); }
.section--dark .section__title { color: #fff; }
.section--dark .section__label { color: var(--copper-lt); }

/* Musical staff motif */
.staff { position: absolute; inset-inline: 0; top: 0; opacity: 0.5; pointer-events: none; }
.staff svg { width: 100%; height: 60px; }
.staff line { stroke: var(--copper); stroke-width: 1; opacity: 0.35; }
.staff--sm { position: static; opacity: 0.6; }
.staff--sm svg { height: 40px; }

/* ---------- Ambience / Gallery ---------- */
.ambience__head { text-align: center; max-width: 46ch; margin: 0 auto 2.8rem; }
.ambience__head p { color: var(--text-soft); }
.gallery {
  display: grid;
  /* Photos carry no reading direction; force LTR so grid placement is
     unambiguous and the tall image never collapses under RTL flipping. */
  direction: ltr;
  grid-template-columns: 1fr 1.3fr;
  /* إيقاع غير متساو بين الصفين، لمسة editorial بدل التقسيم الميكانيكي */
  grid-template-rows: 1.12fr 0.88fr;
  grid-template-areas: "a tall" "b tall";
  gap: 1.2rem;
  height: clamp(440px, 54vw, 640px);
}
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
/* إطار داخلي ذهبي رفيع فوق الصورة */
.gallery__item::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(230, 199, 155, 0.32);
  border-radius: calc(var(--radius) - 7px);
  pointer-events: none;
}
/* عنوان الصورة فوق تدرج كحلي سفلي */
.gallery__item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  direction: rtl;
  padding: 2.6rem 1.5rem 1.05rem;
  background: linear-gradient(to top, rgba(10, 24, 48, 0.85), rgba(10, 24, 48, 0.35) 55%, transparent);
  color: var(--cream-050);
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.01em;
}
.gallery__item--tall { grid-area: tall; }
.gallery__item:nth-child(2) { grid-area: a; }
.gallery__item:nth-child(3) { grid-area: b; }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.info-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.info-list li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: baseline; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(230,199,155,0.14); }
.info-list__k { color: var(--copper-lt); font-weight: 600; font-size: 0.95rem; }
.info-list__v { color: var(--cream-100); }
.info-list__v em { color: rgba(243,236,223,0.5); font-style: normal; font-size: 0.85rem; }

.visit__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ─── بطاقة تقييم قوقل ─── */
.grating {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 199, 155, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.6rem;
}
.grating__g { flex: none; width: 34px; height: 34px; display: grid; place-items: center; background: #fff; border-radius: 50%; }
.grating__g svg { width: 19px; height: 19px; }
.grating__info { flex: 1; min-width: 0; }
.grating__stars { position: relative; display: inline-block; font-size: 1.05rem; letter-spacing: 2px; line-height: 1.2; }
.grating__base { color: rgba(243, 236, 223, 0.25); }
.grating__fill {
  position: absolute; inset-inline-start: 0; top: 0;
  color: var(--gold); overflow: hidden; white-space: nowrap;
  width: 0; /* يضبط بالجافاسكربت حسب التقييم */
}
.grating__text { font-size: 0.86rem; color: rgba(243, 236, 223, 0.7); margin-top: 2px; }
.grating__text b { color: var(--gold); font-size: 1.05rem; font-weight: 600; margin-inline-end: 6px; font-variant-numeric: lining-nums; }
.grating__btn {
  flex: none;
  font-size: 0.86rem; font-weight: 600; color: #241405;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  border-radius: 999px; padding: 0.55rem 1.15rem;
  transition: transform 0.18s var(--ease), box-shadow 0.2s;
  box-shadow: 0 10px 22px -12px rgba(192, 133, 90, 0.7);
}
.grating__btn:hover { transform: translateY(-1px); }
.grating__btn:active { transform: scale(0.97); }

/* ─── بطاقات أعلى تقييمات قوقل ─── */
.greviews-wrap { margin-top: 2.6rem; }
.greviews__label {
  text-align: center; color: var(--copper-lt);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}
.greviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.greview {
  margin: 0; display: flex; flex-direction: column; gap: 0.55rem;
  background: rgba(15, 34, 64, 0.55);
  border: 1px solid rgba(230, 199, 155, 0.16);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}
.greview__stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; }
.greview blockquote {
  margin: 0; color: rgba(243, 236, 223, 0.85);
  font-size: 0.9rem; line-height: 1.85;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.greview figcaption { margin-top: auto; color: rgba(243, 236, 223, 0.5); font-size: 0.78rem; }
@media (max-width: 860px) {
  .greviews { grid-template-columns: 1fr; gap: 0.85rem; }
  .greviews-wrap { margin-top: 2rem; }
}

/* ─── صفحة 404 ─── */
.nf {
  position: relative; min-height: 100dvh;
  display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% -10%, var(--navy-700), var(--navy-900) 60%);
  color: var(--cream-050); text-align: center;
  padding: 2.5rem 1.4rem; overflow: hidden;
}
.nf-inner { position: relative; z-index: 2; }
.nf .logo-halo { margin-bottom: 1.6rem; }
.nf-logo { height: 130px; width: auto; position: relative; filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.5)); }
.nf-code {
  font-family: var(--font-latin); font-weight: 600; line-height: 1;
  font-size: clamp(4.6rem, 15vw, 7.5rem); color: var(--gold);
  letter-spacing: 0.06em; direction: ltr;
}
.nf-code span { color: var(--copper-lt); font-size: 0.82em; margin-inline: 0.06em; }
.nf-title { font-size: clamp(1.5rem, 4.5vw, 2.1rem); font-weight: 700; margin-top: 0.9rem; }
.nf-sub { color: rgba(243, 236, 223, 0.75); margin: 0.8rem auto 1.8rem; max-width: 42ch; }
.nf-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) {
  .nf-actions { flex-direction: column; }
  .nf-logo { height: 108px; }
}

.info-list__link { color: var(--cream-100); border-bottom: 1px solid rgba(215,165,119,0.45); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.info-list__link:hover { color: var(--gold); border-color: var(--gold); }

/* خريطة قوقل المدمجة */
.map-embed {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(230, 199, 155, 0.25);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
  background: var(--navy-800); /* يظهر أثناء تحميل الخريطة */
}
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
/* فوتر بمحاذاة مركزية: لوقو، تاق لاين، روابط، توقيع المصمم، حقوق */
.site-footer {
  background: var(--navy-900); color: var(--cream-100);
  padding: 3.8rem 0 2.8rem; text-align: center;
  border-top: 1px solid rgba(230, 199, 155, 0.14);
}
.site-footer__inner { display: grid; justify-items: center; gap: 1.5rem; }
.site-footer__logo { width: auto; height: 84px; }
.site-footer__tagline { color: rgba(243, 236, 223, 0.75); font-size: 1.05rem; font-weight: 300; }
.site-footer__nav { display: flex; gap: 1.4rem 2.4rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.site-footer__nav a { color: var(--cream-100); font-size: 1.05rem; }
.site-footer__nav a:hover { color: var(--copper-lt); }
.site-footer__credit {
  margin-top: 1.4rem;
  font-family: var(--font-latin); font-size: 1rem;
  color: rgba(243, 236, 223, 0.6);
}
/* الحشوة السالبة توسع مساحة اللمس حول الاسم دون تحريك السطر */
.site-footer__credit a {
  color: var(--cream-050); font-weight: 600;
  display: inline-block; padding: 0.55rem 0.45rem; margin: -0.55rem -0.45rem;
  position: relative; z-index: 1;
  text-decoration: underline;
  text-decoration-color: rgba(215, 165, 119, 0.55);
  text-underline-offset: 4px;
}
.site-footer__credit a:hover { color: var(--copper-lt); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__copy { font-size: 0.92rem; color: rgba(243, 236, 223, 0.5); }

/* ---------- Floating contact (FAB) ---------- */
.fab {
  position: fixed; z-index: 200; left: auto;
  /* الحاوية كلها شفافة للمس، الزر الرئيسي وعناصر القائمة المفتوحة فقط تستقبل النقر */
  pointer-events: none;
  /* safe-area: ما يلتصق بحافة الشاشة في الآيفون ذي النوتش */
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; align-items: flex-start; /* RTL: flex-start = محاذاة يمين */
  gap: 0.9rem;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
/* يختفي عند فتح قائمة الجوال حتى لا يتراكب معها */
body.nav-locked .fab { opacity: 0; visibility: hidden; }
.fab__main {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  border: none; cursor: pointer; pointer-events: auto;
  background: linear-gradient(140deg, var(--copper-lt), var(--copper) 70%);
  color: #241405; display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(192, 133, 90, 0.75), 0 4px 12px rgba(0,0,0,0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.fab__main:hover { transform: translateY(-2px); }
.fab__main:active { transform: scale(0.94); }
.fab__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(215, 165, 119, 0.8);
  animation: fabPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.9; } 70%, 100% { transform: scale(1.65); opacity: 0; } }
.fab__icon-note, .fab__icon-close { position: absolute; display: grid; place-items: center; transition: transform 0.35s var(--ease), opacity 0.25s; }
.fab__icon-note svg, .fab__icon-close svg { width: 27px; height: 27px; }
.fab__icon-close { opacity: 0; transform: rotate(-90deg) scale(0.4); }
.fab.is-open .fab__icon-note { opacity: 0; transform: rotate(90deg) scale(0.4); }
.fab.is-open .fab__icon-close { opacity: 1; transform: rotate(0) scale(1); }
.fab.is-open .fab__pulse { animation: none; opacity: 0; }

/* pointer-events:none: القائمة المغلقة لا تسرق الضغطات من المحتوى تحتها،
   والعناصر المفتوحة تفعل pointer-events:auto بنفسها فتبقى قابلة للنقر */
.fab__menu { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; pointer-events: none; }
.fab__item {
  display: flex; align-items: center; gap: 0.7rem; flex-direction: row-reverse;
  opacity: 0; transform: translateY(16px) scale(0.4); pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  transition-delay: var(--out-d, 0s);
}
.fab.is-open .fab__item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; transition-delay: var(--in-d, 0s); }
/* تتابع النطّات: الأقرب للزر أولًا */
.fab.is-open .fab__item:nth-child(5) { --in-d: 0s; }
.fab.is-open .fab__item:nth-child(4) { --in-d: 0.05s; }
.fab.is-open .fab__item:nth-child(3) { --in-d: 0.1s; }
.fab.is-open .fab__item:nth-child(2) { --in-d: 0.15s; }
.fab.is-open .fab__item:nth-child(1) { --in-d: 0.2s; }
.fab__icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
}
.fab__icon svg { width: 23px; height: 23px; }
.fab__label {
  background: rgba(10, 24, 48, 0.92); color: var(--cream-100);
  font-size: 0.82rem; font-weight: 500; padding: 0.32rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(230,199,155,0.2); white-space: nowrap;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.fab__item--whatsapp .fab__icon { background: #25d366; }
.fab__item--instagram .fab__icon { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.fab__item--snapchat .fab__icon { background: #fffc00; color: #16161a; }
.fab__item--tiktok .fab__icon { background: #010101; border: 1px solid rgba(255, 255, 255, 0.22); }

/* ---------- Scroll reveal ----------
   Content is visible by default. The hidden state applies ONLY when JS is
   active (html.js), so a JS failure never leaves the page blank. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 330px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 1.4rem 1.5rem 1.5rem;
    background: linear-gradient(168deg, #142c52 0%, var(--navy-900) 58%);
    border-inline-start: 1px solid rgba(230, 199, 155, 0.16);
    box-shadow: -28px 0 60px -22px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    /* اللوحة مثبتة على يمين الشاشة، ومخفية خارج الحافة اليمنى */
    transform: translateX(100%); transition: transform 0.38s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }

  /* رأس القائمة: لوقو + اسم */
  .nav__head {
    display: flex; align-items: center; gap: 0.85rem;
    padding-bottom: 1.15rem; margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(230, 199, 155, 0.18);
  }
  .nav__head img { width: auto; height: 54px; }
  .nav__head strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--gold); line-height: 1.35; }
  .nav__head small { color: rgba(243, 236, 223, 0.55); font-size: 0.78rem; }

  /* الروابط: صفوف مريحة بنوتة نحاسية */
  .nav > a:not(.btn) {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 1.05rem; padding: 0.95rem 0.15rem;
    border-bottom: 1px solid rgba(230, 199, 155, 0.09);
  }
  .nav > a:not(.btn)::after { display: none; } /* نلغي خط hover الخاص بالديسكتوب */
  .nav > a:not(.btn)::before {
    content: ""; flex: none; width: 16px; height: 16px; opacity: 0.9;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d7a577'%3E%3Cpath d='M12 3v10.55A4 4 0 1 0 14 17V7h4V3h-6z'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .nav > a:not(.btn):active { background: rgba(230, 199, 155, 0.06); }

  /* زر زورونا: أساسي بعرض كامل */
  .nav .nav__cta {
    margin-top: 1.5rem; width: 100%; justify-content: center;
    background: linear-gradient(135deg, var(--copper-lt), var(--copper));
    border: none; color: #241405; font-weight: 600;
    padding-block: 0.9rem; font-size: 1rem;
    box-shadow: 0 12px 26px -12px rgba(192, 133, 90, 0.6);
  }

  /* تذييل القائمة: الساعات + السوشال */
  .nav__foot {
    margin-top: auto; padding-top: 1.5rem;
    display: grid; gap: 0.95rem;
  }
  .nav__hours { display: flex; align-items: flex-start; gap: 0.55rem; color: rgba(243, 236, 223, 0.72); font-size: 0.85rem; line-height: 1.75; }
  .nav__hours::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; background: var(--copper-lt); box-shadow: 0 0 8px rgba(215, 165, 119, 0.9); }
  .nav__social { display: flex; gap: 0.7rem; }
  .nav__social a {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    border: 1px solid rgba(230, 199, 155, 0.32); color: var(--copper-lt);
    transition: background 0.2s, color 0.2s, transform 0.2s var(--ease);
  }
  .nav__social a svg { width: 19px; height: 19px; }
  .nav__social a:active { transform: scale(0.92); }
  .nav__social a:hover { background: var(--copper); color: #241405; }

  /* دخول متتابع لعناصر القائمة عند الفتح */
  .nav > * { opacity: 0; transform: translateX(26px); transition: opacity 0.3s ease, transform 0.42s var(--ease); }
  .nav.is-open > * { opacity: 1; transform: none; }
  .nav.is-open > *:nth-child(1) { transition-delay: 0.07s; }
  .nav.is-open > *:nth-child(2) { transition-delay: 0.11s; }
  .nav.is-open > *:nth-child(3) { transition-delay: 0.15s; }
  .nav.is-open > *:nth-child(4) { transition-delay: 0.19s; }
  .nav.is-open > *:nth-child(5) { transition-delay: 0.23s; }
  .nav.is-open > *:nth-child(6) { transition-delay: 0.27s; }
  .nav.is-open > *:nth-child(7) { transition-delay: 0.31s; }

  .nav-toggle { display: flex; z-index: 101; }

  .nav-scrim {
    display: block; position: fixed; inset: 0; z-index: 99;
    background: rgba(6, 15, 30, 0.55);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  body.nav-locked { overflow: hidden; }

  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 440px; margin-inline: auto; }
  .about__badge { inset-inline-start: auto; inset-inline-end: -14px; width: 38%; }
  .visit__map { order: -1; }
}

@media (max-width: 560px) {
  /* المعرض عمود واحد: نلغي خريطة المناطق والارتفاع الثابت حتى لا تبقى فراغات */
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: "tall" "a" "b";
    height: auto;
  }
  .gallery__item img { height: 235px; }
  .gallery__item--tall img { height: 320px; }
  .info-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .btn { width: 100%; }
  .hero__actions .btn, .visit__actions .btn { width: 100%; }

  /* الفوتر: مسافة إضافية حتى لا يغطي الزر العائم سطر الحقوق */
  .site-footer { padding-bottom: 6.2rem; }

  /* هيرو أهدأ على الجوال */
  .hero__logo { height: 165px; margin-bottom: 1rem; }
  .hero__inner { padding-block: 2.2rem 1.6rem; }
  .hero__sub { font-size: 1rem; }
  .music-staff { margin: 1.5rem auto 1.4rem; }
  .scroll-hint { margin-top: 1.4rem; }
  .scroll-hint__line { height: 38px; }

}

/* شاشات ضيقة جدا (iPhone SE وما دونه): نحافظ على التنفس دون تكدس */
@media (max-width: 360px) {
  .container { padding-inline: 1rem; }
  .hero__logo { height: 145px; }
  .hero__actions { gap: 0.7rem; }
  .fab__main { width: 56px; height: 56px; }
  .site-footer__logo { height: 72px; }
}

/* شاشات قصيرة: نخفي مؤشر النزول حتى لا يزاحم المحتوى */
@media (max-height: 640px) {
  .scroll-hint { display: none; }
}

/* =========================================================
   صفحة المنيو المستقلة (menu.html)، وجهة الباركود
   ========================================================= */
.mp {
  background:
    radial-gradient(1.3px 1.3px at 22% 12%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.1px 1.1px at 74% 6%, rgba(230,199,155,0.55), transparent),
    radial-gradient(1.2px 1.2px at 55% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(120% 70% at 50% 0%, var(--navy-700), var(--navy-900) 62%);
  color: var(--cream-050);
  min-height: 100dvh;
  display: flex; flex-direction: column;
}

/* رأس الصفحة */
.mp-head { text-align: center; padding: 2.4rem 1.4rem 1.4rem; position: relative; }
.mp-home {
  position: absolute; top: 1.15rem; inset-inline-start: 1.15rem;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--copper-lt); border: 1px solid rgba(230,199,155,0.3);
  transition: background 0.2s, color 0.2s;
}
.mp-home svg { width: 19px; height: 19px; }
.mp-home:hover { background: var(--copper); color: #241405; }
.mp-logo { width: auto; height: 132px; position: relative; filter: drop-shadow(0 12px 26px rgba(0,0,0,0.5)); }
.mp-brand { color: var(--copper-lt); font-size: 0.86rem; letter-spacing: 0.14em; font-weight: 500; }
.mp-title { font-family: var(--font-head); font-size: clamp(2rem, 8vw, 2.7rem); font-weight: 700; color: #fff; margin-top: 0.15rem; }
/* الزخرفة تعيد استخدام ستايل وأنميشن المدرج من الهيرو (.staff-lines / .clef / .mnote) */
.mp-ornament {
  width: min(72vw, 250px); margin: 1rem auto 0.6rem;
  -webkit-mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
}
.mp-ornament svg { width: 100%; height: auto; direction: ltr; display: block; }
.mp-ornament .staff-lines line { stroke: rgba(230, 199, 155, 0.26); }
.mp-ornament .clef { fill: var(--copper-lt); opacity: 0.95; font-family: serif; }
.mp-ornament .mnote line { stroke-width: 1.7; }
.mp-ornament .barline { stroke: rgba(230, 199, 155, 0.38); stroke-width: 1.3; }
.mp-ornament .barline--thick { stroke-width: 3.4; }
/* اختصار الريال جنب كل سعر، نفس العرض في كل الصفوف فتبقى الأعمدة متراصفة */
.mp-item__price::after, .mp-variants b::after {
  content: " ر.س";
  font-size: 0.62em;
  font-weight: 500;
  color: rgba(215, 165, 119, 0.9);
  margin-inline-start: 2px;
}

/* شريط التصنيفات المثبّت */
.mp-tabs {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: center; gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: rgba(10, 24, 48, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid rgba(230,199,155,0.12);
}
.mp-tabs a {
  font-size: 0.9rem; font-weight: 500; color: var(--cream-100);
  border: 1px solid rgba(230,199,155,0.22); border-radius: 999px;
  padding: 0.5rem 1.15rem; white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s;
}
.mp-tabs a.is-active {
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #241405; border-color: transparent; font-weight: 600;
}

/* الأقسام */
.mp-main { width: min(100% - 2.6rem, 620px); margin-inline: auto; flex: 1; padding-bottom: 2rem; }
.mp-section { padding-top: 2.3rem; scroll-margin-top: 76px; content-visibility: auto; contain-intrinsic-size: auto 620px; }
.mp-cat {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; color: var(--gold);
  margin-bottom: 0.6rem;
}
/* خط زخرفي بعد اسم القسم */
.mp-cat::after { content: ""; flex: 1; height: 1px; background: linear-gradient(to left, rgba(230,199,155,0.45), transparent); }

.mp-list { list-style: none; padding: 0; margin: 0; }
.mp-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 0.2rem;
  border-bottom: 1px solid rgba(230,199,155,0.12);
}
.mp-item:last-child { border-bottom: none; }
.mp-item__name { font-weight: 500; font-size: 1.06rem; color: var(--cream-050); }
.mp-item__name small { display: block; font-size: 0.78rem; color: rgba(243,236,223,0.55); font-weight: 400; margin-top: 2px; }
.mp-item__price {
  flex: none; font-family: var(--font-body); font-weight: 600; font-size: 1.12rem; color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum", "tnum";
}
.mp-item__tag { font-size: 0.74rem; color: var(--copper-lt); border: 1px solid rgba(215,165,119,0.4); border-radius: 999px; padding: 1px 9px; white-space: nowrap; }

/* صنف بأكثر من حجم: الأسعار عمود مرصوص يسار الصنف مثل السعر المفرد تماما */
.mp-item__price--multi { display: grid; gap: 3px; justify-items: start; }
.mp-item__price--multi::after { content: none; }
.mp-item__price--multi > span { display: flex; align-items: baseline; gap: 6px; }
.mp-item__price--multi i {
  font-style: normal; font-size: 0.72rem; font-weight: 400;
  color: rgba(243, 236, 223, 0.6);
}
.mp-item__price--multi b {
  font-weight: 600; font-size: 1.02rem; color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}
.mp-item__price--multi b::after {
  content: " ر.س"; font-size: 0.62em; font-weight: 500;
  color: rgba(215, 165, 119, 0.9); margin-inline-start: 2px;
}

/* بادج سيجنتشر، نفس كبسولة لوحة التحكم */
.mp-badge {
  display: inline-block; vertical-align: 2px;
  font-style: normal; font-size: 0.62rem; font-weight: 600; line-height: 1.5;
  color: #241405; background: linear-gradient(135deg, var(--gold), var(--copper-lt));
  border-radius: 999px; padding: 1px 9px; margin-inline-start: 6px;
  letter-spacing: 0.01em;
}

/* طبق التوقيع */
.mp-item--signature {
  background: linear-gradient(120deg, rgba(192,133,90,0.16), transparent 70%);
  border: 1px solid rgba(215,165,119,0.35) !important; border-radius: var(--radius-sm);
  padding-inline: 1rem; margin-bottom: 0.5rem;
}
.mp-item--signature .mp-item__name { color: var(--gold); }

/* تذييل صفحة المنيو يستخدم مكونات .site-footer نفسها */
.mp .site-footer { margin-top: 1.6rem; }

@media (max-width: 430px) {
  .mp-tabs { gap: 0.35rem; padding-inline: 0.5rem; }
  .mp-tabs a { padding: 0.45rem 0.8rem; font-size: 0.84rem; }
}
@media (max-width: 340px) {
  .mp-tabs { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .mp-tabs::-webkit-scrollbar { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__sky, .mnote, .scroll-hint__line i, .fab__pulse, .logo-halo__stars { animation: none !important; }
  .logo-halo__stars { opacity: 0.8; }
  .mnote { opacity: 1; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .gallery__item:hover img { transform: none; }
  .fab__item { transition: opacity 0.2s ease; }
  .nav > * { transform: none; transition: opacity 0.2s ease; }
  .nav { transition: none; }
}
