:root {
  --aqua: #10cfc9;
  --aqua-deep: #08aaa5;
  --yellow: #fed925;
  --ink: #231f20;
  --muted: #6d7474;
  --paper: #f3f2ee;
  --white: #fff;
  --line: rgba(35,31,32,.12);
  --shadow: 0 18px 55px rgba(35,31,32,.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.paper-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .42;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.92), transparent 26%),
    radial-gradient(circle at 80% 42%, rgba(16,207,201,.07), transparent 28%),
    linear-gradient(115deg, rgba(35,31,32,.025) 1px, transparent 1px);
  background-size: auto, auto, 6px 6px;
}

.menu-trigger {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 60;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(35,31,32,.94);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(35,31,32,.22);
  padding: 12px 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.menu-trigger:hover { transform: translateY(-1px); }
.menu-icon { width: 20px; display: grid; gap: 4px; }
.menu-icon i { display: block; height: 2px; border-radius: 9px; background: var(--yellow); }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(35,31,32,.48);
  backdrop-filter: blur(4px);
}
.drawer {
  position: fixed;
  z-index: 80;
  top: 0; right: 0;
  width: min(400px, 90vw);
  height: 100dvh;
  padding: 22px;
  background: #fff;
  box-shadow: -20px 0 70px rgba(35,31,32,.22);
  transform: translateX(105%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 2px 18px; border-bottom: 1px solid var(--line); }
.drawer-head strong { display: block; font-size: 1.18rem; }
.drawer-head small { display: block; color: var(--muted); margin-top: 5px; }
.icon-button { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--paper); font-size: 26px; cursor: pointer; }
.drawer-nav { overflow-y: auto; padding: 14px 0; }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 12px; margin: 3px 0; border-radius: 16px; font-weight: 700;
}
.drawer-nav a:hover { background: rgba(16,207,201,.12); }
.drawer-nav small { direction: ltr; color: var(--muted); font-weight: 500; }
.drawer-contact { margin-top: auto; display: grid; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.drawer-contact a { padding: 12px 14px; border-radius: 14px; background: var(--paper); font-weight: 700; display: flex; justify-content: space-between; }

.site-header {
  position: relative;
  min-height: 670px;
  padding: 84px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(254,217,37,.3), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(16,207,201,.26), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7f6f1 100%);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.site-header::before, .site-header::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.site-header::before { width: 320px; height: 320px; background: var(--yellow); opacity: .12; left: -120px; bottom: -130px; }
.site-header::after { width: 390px; height: 390px; border: 55px solid var(--aqua); opacity: .08; right: -170px; bottom: -210px; }
.header-actions { position: absolute; top: max(20px, env(safe-area-inset-top)); left: max(20px, env(safe-area-inset-left)); z-index: 2; }
.lang-toggle { border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 999px; padding: 10px 14px; cursor: pointer; box-shadow: 0 8px 25px rgba(35,31,32,.08); }
.lang-toggle .active { color: var(--aqua-deep); font-weight: 800; }
.lang-toggle .divider { color: #bbb; padding: 0 4px; }
.brand-logo { width: min(330px, 72vw); height: auto; margin-bottom: 4px; filter: drop-shadow(0 12px 18px rgba(35,31,32,.07)); }
.eyebrow { margin: 4px 0 10px; color: var(--aqua-deep); font-weight: 800; letter-spacing: .02em; }
.site-header h1 { margin: 0; max-width: 820px; font-size: clamp(2.1rem, 6vw, 4.7rem); line-height: 1.1; letter-spacing: -.04em; }
.hero-copy { max-width: 660px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.8; margin: 18px auto 26px; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.primary-button, .secondary-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 800; }
.primary-button { background: var(--ink); color: #fff; box-shadow: 0 13px 28px rgba(35,31,32,.2); }
.primary-button:hover { background: var(--aqua-deep); }
.hero-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
.hero-social-link { min-height: 50px; min-width: 190px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; box-shadow: 0 13px 28px rgba(35,31,32,.2); }
.hero-social-link:hover { background: var(--aqua-deep); transform: translateY(-1px); }
.hero-social-link span { display: grid; text-align: start; line-height: 1.05; }
.hero-social-link b { font-size: .95rem; font-weight: 800; }
.hero-social-link small { margin-top: 2px; color: rgba(255,255,255,.78); font-size: .72rem; }
.hero-social-link .social-icon { width: 20px; height: 20px; flex: 0 0 20px; color: #fff; }
.hero-social-link.tiktok-link .social-icon { fill: currentColor; stroke: none; }
.secondary-button { border: 2px solid var(--ink); background: #fff; }
.secondary-button:hover { background: var(--yellow); }

main { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }
.menu-tools { position: sticky; top: 10px; z-index: 40; margin: -32px auto 30px; padding: 16px; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.88); border-radius: 26px; box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.search-box { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); background: #fff; border-radius: 18px; }
.search-box svg { width: 21px; fill: none; stroke: var(--ink); stroke-width: 2; flex: 0 0 auto; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box button { border: 0; background: var(--paper); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }
.quick-chips { display: flex; gap: 9px; overflow-x: auto; padding: 12px 2px 1px; scrollbar-width: none; }
.quick-chips::-webkit-scrollbar { display: none; }
.quick-chips a { white-space: nowrap; padding: 9px 14px; border-radius: 999px; background: var(--paper); border: 1px solid transparent; font-size: .9rem; font-weight: 700; }
.quick-chips a:hover { border-color: var(--aqua); background: rgba(16,207,201,.11); }
.search-status { margin: 20px 0; padding: 18px; border-radius: 18px; background: #fff; text-align: center; color: var(--muted); }

.menu-section { scroll-margin-top: 145px; padding: 38px 0 28px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1; }
.section-heading h2 span { color: var(--aqua-deep); }
.section-heading p { margin: 8px 0 0; color: var(--muted); }
.section-count { min-width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); font-weight: 900; }
.menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.menu-card { position: relative; margin: 0; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 12px 30px rgba(35,31,32,.09); transition: transform .22s ease, box-shadow .22s ease; isolation: isolate; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(35,31,32,.14); }
.menu-card img { width: 100%; height: auto; }
.menu-card[hidden] { display: none; }
.corrected-badge { position: absolute; top: 12px; left: 12px; z-index: 3; padding: 7px 10px; border-radius: 999px; background: var(--yellow); font-size: .72rem; font-weight: 900; box-shadow: 0 6px 16px rgba(35,31,32,.16); }
.correction-overlay {
  position: absolute; z-index: 2; left: 0; right: 0; top: 46%; bottom: 19%;
  padding: 16px 20px 12px; background: #fff; display: flex; flex-direction: column; justify-content: center; text-align: start;
}
.correction-overlay strong { color: var(--aqua-deep); font-size: clamp(1rem, 1.5vw, 1.28rem); line-height: 1.25; }
.correction-overlay .en { direction: ltr; text-align: left; font-size: .82rem; color: #4d8582; margin-top: 4px; }
.correction-overlay .ar { direction: rtl; text-align: right; font-size: .92rem; color: var(--aqua-deep); margin-top: 10px; line-height: 1.45; }
.no-results { grid-column: 1 / -1; padding: 45px 20px; text-align: center; color: var(--muted); background: #fff; border-radius: 24px; }

.visit-card { margin: 54px 0 28px; padding: clamp(24px, 6vw, 60px); border-radius: var(--radius-xl); background: var(--ink); color: #fff; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; overflow: hidden; position: relative; }
.visit-card::after { content: ""; position: absolute; width: 260px; height: 260px; background: var(--yellow); border-radius: 50%; left: -100px; bottom: -145px; opacity: .18; }
.mini-label { display: inline-block; color: var(--yellow); font-weight: 900; margin-bottom: 7px; }
.visit-card h2 { margin: 0; font-size: clamp(1.8rem, 5vw, 3.3rem); }
.visit-card p { color: #c7c7c7; font-size: 1.05rem; }
.visit-links { display: grid; gap: 10px; }
.visit-links a { display: flex; justify-content: space-between; gap: 15px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.visit-links a:hover { background: var(--aqua-deep); }
.visit-links span { color: #c8c8c8; }
.social-platform { display: inline-flex; align-items: center; gap: 10px; color: #fff !important; }
.social-icon { width: 23px; height: 23px; flex: 0 0 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tiktok-link .social-icon { fill: currentColor; stroke: none; }
.drawer-social .social-platform { color: var(--ink) !important; }
.drawer-social .social-icon { width: 20px; height: 20px; flex-basis: 20px; }

footer { padding: 55px 20px 90px; text-align: center; }
footer img { width: 130px; margin: 0 auto 12px; }
footer p { margin: 8px; color: var(--muted); }
footer small { color: #999; }
.to-top { position: fixed; z-index: 45; left: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--yellow); color: var(--ink); font-weight: 900; cursor: pointer; box-shadow: 0 10px 25px rgba(35,31,32,.16); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

html[dir="ltr"] .menu-trigger { right: auto; left: max(18px, env(safe-area-inset-left)); }
html[dir="ltr"] .drawer { right: auto; left: 0; transform: translateX(-105%); box-shadow: 20px 0 70px rgba(35,31,32,.22); }
html[dir="ltr"] .drawer.open { transform: translateX(0); }
html[dir="ltr"] .header-actions { left: auto; right: max(20px, env(safe-area-inset-right)); }
html[dir="ltr"] .to-top { left: auto; right: 18px; }

@media (max-width: 1050px) { .menu-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px) {
  .site-header { min-height: 620px; padding-top: 105px; border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; }
  .menu-trigger { padding: 11px 14px; }
  .menu-trigger > span:last-child { display: none; }
  main { width: min(100% - 18px, var(--max)); }
  .menu-tools { top: 8px; border-radius: 22px; padding: 12px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .menu-card { border-radius: 20px; }
  .section-heading { align-items: center; }
  .section-heading p { display: none; }
  .section-count { min-width: 40px; height: 40px; }
  .visit-card { grid-template-columns: 1fr; }
  .correction-overlay { padding: 8px 10px; }
  .correction-overlay .en { font-size: .65rem; }
  .correction-overlay .ar { font-size: .72rem; margin-top: 4px; }
}
@media (max-width: 460px) {
  .site-header h1 { font-size: 2.35rem; }
  .hero-buttons { width: 100%; }
  .primary-button, .secondary-button { flex: 1 1 100%; }
  .hero-socials { width: 100%; }
  .hero-social-link { flex: 1 1 100%; min-width: 0; padding-inline: 18px; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
  .menu-card { max-width: 390px; width: 100%; margin-inline: auto; }
  .correction-overlay { padding: 14px 18px; }
  .correction-overlay .en { font-size: .82rem; }
  .correction-overlay .ar { font-size: .9rem; margin-top: 8px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
