/* =========================================================
   Umm Al Zulf — design tokens
   ========================================================= */
:root {
  --teal: #0a9a8b;
  --teal-deep: #067165;
  --teal-ink: #05413a;
  --red: #e4132b;
  --red-deep: #b70d20;
  --cream: #fbf6ec;
  --cream-2: #f3ebdb;
  --ink: #10201e;
  --muted: #5b6b68;
  --white: #ffffff;

  --font-ar-display: 'Aref Ruqaa', 'Amiri', serif;
  --font-ar: 'Cairo', 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --radius: 22px;
  --container: 1200px;
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
[lang="ar"] { font-family: var(--font-ar); direction: rtl; }
.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.hero__grid > *, .about__grid > *, .reviews__grid > *, .visit__grid > *, .section__head > *, .footer__grid > * { min-width: 0; }
.ico { width: 1em; height: 1em; fill: currentColor; }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  color: var(--red); margin-bottom: 14px; display: flex; gap: 10px; align-items: center;
}
.eyebrow [lang="ar"] { text-transform: none; letter-spacing: 0; font-size: 14px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(38px, 5.2vw, 66px); line-height: 1.02; letter-spacing: -.01em; color: var(--teal-ink);
}
.h2 em, .hero__title em { font-style: italic; color: var(--teal); }
.section__head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.section__note { color: var(--muted); font-size: 17px; max-width: 46ch; }
.section__head--light .h2 { color: var(--white); }
.section__head--light .h2 em { color: #9ee4d9; }
.section__head--light .section__note { color: rgba(255,255,255,.72); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 15px;
  overflow: hidden; isolation: isolate; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: rgba(255,255,255,.18); transform: translateY(101%); border-radius: inherit;
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 10px 30px -10px rgba(228,19,43,.6); }
.btn--red:hover { box-shadow: 0 16px 34px -10px rgba(228,19,43,.7); }
.btn--teal { background: var(--teal); color: var(--white); box-shadow: 0 10px 30px -10px rgba(10,154,139,.6); }
.btn--ghost { color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost::before { background: var(--white); }
.btn--ghost:hover { color: var(--teal-ink); border-color: var(--white); }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 20px 40px; font-size: 16px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.14); color: var(--white); font-size: 13px; font-weight: 600;
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2);
}
.pill--live i { width: 8px; height: 8px; border-radius: 50%; background: #5ef2c1; box-shadow: 0 0 0 0 rgba(94,242,193,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(94,242,193,.6); } 70% { box-shadow: 0 0 0 9px rgba(94,242,193,0); } 100% { box-shadow: 0 0 0 0 rgba(94,242,193,0); } }

/* =========================================================
   Logo (built from web fonts + SVG mark)
   ========================================================= */
.logo--full { display: grid; justify-items: center; color: var(--white); text-align: center; position: relative; }
.logo__mark { width: 66px; height: 66px; color: var(--red); margin-bottom: -26px; transform: translateX(-118px) rotate(-8deg); }
.logo__ar { font-family: var(--font-ar-display); font-weight: 700; font-size: 116px; line-height: 1; letter-spacing: -.01em; }
.logo__en { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 28px; letter-spacing: .34em; display: flex; margin-top: 10px; direction: ltr; }
.logo__en .gap { width: 1.2em; }
.logo__tag { font-family: var(--font-ar); font-weight: 800; font-size: 30px; color: var(--red); margin-top: 8px; letter-spacing: .04em; }
.logo--footer { transform: scale(.72); transform-origin: left top; }

/* =========================================================
   Preloader
   ========================================================= */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--teal); display: grid; place-items: center; overflow: hidden; }
.preloader__inner { display: grid; justify-items: center; gap: 36px; transform: scale(.9); }
.preloader__curtain { position: absolute; inset: 0; background: var(--cream); transform: translateY(100%); }
.preloader__bar { width: 180px; height: 2px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--white); transition: width .4s var(--ease); }

/* preloader logo choreography */
.logo--pre .logo__mark { opacity: 0; animation: markIn .9s var(--ease) .55s forwards; }
.logo--pre .logo__mark path { stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw 1s var(--ease) .7s forwards; }
.logo--pre .logo__ar { opacity: 0; clip-path: inset(0 0 0 100%); animation: arIn 1.1s var(--ease) .15s forwards; }
.logo--pre .logo__en span { opacity: 0; transform: translateY(14px); animation: letterIn .6s var(--ease) forwards; }
.logo--pre .logo__en span:nth-child(1) { animation-delay: .8s }
.logo--pre .logo__en span:nth-child(2) { animation-delay: .86s }
.logo--pre .logo__en span:nth-child(3) { animation-delay: .92s }
.logo--pre .logo__en span:nth-child(5) { animation-delay: .98s }
.logo--pre .logo__en span:nth-child(6) { animation-delay: 1.04s }
.logo--pre .logo__en span:nth-child(7) { animation-delay: 1.1s }
.logo--pre .logo__en span:nth-child(8) { animation-delay: 1.16s }
.logo--pre .logo__en span:nth-child(9) { animation-delay: 1.22s }
.logo--pre .logo__en span:nth-child(10) { animation-delay: 1.28s }
.logo--pre .logo__tag { opacity: 0; transform: translateY(12px); animation: letterIn .8s var(--ease) 1.35s forwards; }
@keyframes markIn { from { opacity: 0; transform: translateX(-118px) rotate(-30deg) scale(.4); } to { opacity: 1; transform: translateX(-118px) rotate(-8deg) scale(1); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes arIn { from { opacity: 0; clip-path: inset(0 0 0 100%); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes letterIn { to { opacity: 1; transform: none; } }

.preloader.is-done { animation: preOut .9s var(--ease-io) forwards; }
.preloader.is-done .preloader__inner { animation: preInnerOut .6s var(--ease-io) forwards; }
.preloader.is-done .preloader__curtain { animation: curtain .9s var(--ease-io) forwards; }
@keyframes preOut { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); visibility: hidden; } }
@keyframes preInnerOut { to { opacity: 0; transform: scale(.8) translateY(-40px); } }
@keyframes curtain { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }

/* =========================================================
   Navigation
   ========================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; background: var(--red); transform-origin: left; transform: scaleX(0); z-index: 900; }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800; height: var(--nav-h);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease), color .4s var(--ease);
  color: var(--white);
}
.nav.is-scrolled { background: rgba(251,246,236,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 10px 40px -20px rgba(5,65,58,.3); height: 68px; color: var(--teal-ink); }
.nav.is-hidden { transform: translateY(-100%); }
.nav { transition: transform .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease), color .4s var(--ease); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark { width: 30px; height: 30px; color: var(--red); transition: transform .5s var(--ease); }
.nav__logo:hover .nav__mark { transform: rotate(-12deg) scale(1.1); }
.nav__ar { font-family: var(--font-ar-display); font-weight: 700; font-size: 30px; line-height: 1; }
.nav__en { font-family: 'Cormorant Garamond', Georgia, serif; direction: ltr; font-weight: 600; letter-spacing: .2em; font-size: 12px; text-transform: uppercase; opacity: .85; margin-left: 4px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: 14px; font-weight: 600; position: relative; padding: 6px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.burger span { width: 24px; height: 2px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 790; pointer-events: none; display: grid; place-items: center; }
.mobile-menu__bg { position: absolute; inset: 0; background: var(--teal); clip-path: circle(0% at calc(100% - 44px) 42px); transition: clip-path .8s var(--ease-io); }
.mobile-menu__links { position: relative; display: grid; gap: 6px; text-align: center; }
.mobile-menu__links a { font-family: var(--font-display); font-size: 44px; color: var(--white); opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease), transform .6s var(--ease); transition-delay: 0s; }
.mobile-menu__phone { font-family: var(--font-body) !important; font-size: 20px !important; color: #ffd6da !important; margin-top: 16px; font-weight: 700; }
.mobile-menu__foot { position: absolute; bottom: 40px; color: rgba(255,255,255,.7); font-weight: 800; font-size: 20px; opacity: 0; transition: opacity .5s .5s; }
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at calc(100% - 44px) 42px); }
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; transition-delay: calc(.25s + var(--i) * .07s); }
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: 100svh; background: var(--teal); color: var(--white); display: flex; align-items: center; overflow: hidden; padding: calc(var(--nav-h) + 40px) 0 80px; isolation: isolate; }
.hero__pattern { position: absolute; inset: 0; z-index: -1; opacity: .07; background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1.4px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero__blob { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .55; will-change: transform; }
.hero__blob--1 { width: 55vw; height: 55vw; background: #1cc4b0; top: -20vw; right: -10vw; animation: drift 18s ease-in-out infinite alternate; }
.hero__blob--2 { width: 40vw; height: 40vw; background: var(--teal-deep); bottom: -20vw; left: -10vw; animation: drift 22s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(6vw, 4vw) scale(1.15); } }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__eyebrow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(48px, 6.2vw, 86px); line-height: .98; letter-spacing: -.02em; }
.hero__title .split { display: block; overflow: hidden; }
.hero__title .split > i { display: inline-block; font-style: inherit; transform: translateY(110%); }
.hero__title em { color: #ffe9b0; }
.hero__ar { font-family: var(--font-ar-display); font-size: clamp(26px, 3vw, 40px); margin-top: 22px; color: #d7fff7; text-align: left; direction: rtl; display: flex; }
.hero__lead { max-width: 52ch; font-size: 18px; color: rgba(255,255,255,.82); margin-top: 18px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__meta { display: flex; align-items: center; gap: 14px; margin-top: 34px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; }
.hero__meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
[data-hero] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease); }
.hero.is-in [data-hero] { opacity: 1; transform: none; }
.hero.is-in [data-hero]:nth-child(1) { transition-delay: .1s }
.hero.is-in [data-hero]:nth-child(2) { transition-delay: .2s }
.hero.is-in [data-hero]:nth-child(3) { transition-delay: .35s }
.hero.is-in [data-hero]:nth-child(4) { transition-delay: .45s }
.hero.is-in [data-hero]:nth-child(5) { transition-delay: .55s }
.hero.is-in [data-hero]:nth-child(6) { transition-delay: .65s }
.hero.is-in .hero__title .split > i { animation: riseUp 1.1s var(--ease) forwards; }
.hero.is-in .hero__title .split:nth-child(2) > i { animation-delay: .12s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__visual { position: relative; height: clamp(440px, 60vh, 620px); }
.hv { position: absolute; border-radius: 26px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.45); opacity: 0; transform: translateY(40px) scale(.96); transition: opacity 1s var(--ease), transform 1.1s var(--ease); will-change: transform; }
.hv img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.6s var(--ease); }
.hv:hover img { transform: scale(1); }
.hv--1 { width: 60%; height: 82%; right: 8%; top: 0; }
.hv--2 { width: 40%; height: 52%; left: 0; bottom: 4%; }
.hv--3 { width: 30%; height: 38%; right: 0; bottom: 0; }
.hero.is-in .hv { opacity: 1; transform: none; }
.hero.is-in .hv--1 { transition-delay: .3s }
.hero.is-in .hv--2 { transition-delay: .5s }
.hero.is-in .hv--3 { transition-delay: .65s }
.hv__badge { position: absolute; top: 8%; inset-inline-start: 6%; width: 130px; height: 130px; border-radius: 50%; background: var(--red); color: var(--white); display: grid; place-items: center; align-content: center; gap: 2px; text-align: center; box-shadow: 0 20px 40px -12px rgba(228,19,43,.6); opacity: 0; transform: scale(0); transition: opacity .6s var(--ease) .9s, transform .8s cubic-bezier(.34,1.56,.64,1) .9s; animation: spinSlow 14s linear infinite; }
.hv__badge-mark { width: 34px; height: 34px; color: var(--white); }
.hv__badge [lang="ar"] { font-weight: 800; font-size: 18px; line-height: 1; }
.hv__badge small { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.hero.is-in .hv__badge { opacity: 1; transform: scale(1); }
@keyframes spinSlow { to { rotate: 360deg; } }
.hero__scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--white); border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(16px); opacity: 0 } 100% { opacity: 0 } }

/* =========================================================
   Marquee
   ========================================================= */
.marquee { background: var(--red); color: var(--white); overflow: hidden; padding: 16px 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 600; letter-spacing: .04em; position: relative; z-index: 2; }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 40s linear infinite; will-change: transform; }
.marquee__track i { width: 8px; height: 8px; border-radius: 50%; background: var(--white); flex: none; }
.marquee__track [lang="ar"] { font-family: var(--font-ar-display); font-size: 30px; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Reveal system (IntersectionObserver toggles .is-visible)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform 1s var(--ease), clip-path 1.1s var(--ease); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--pop { transform: scale(.7); }
.reveal--clip { transform: none; clip-path: inset(0 0 calc(100% - 1px) 0 round var(--radius)); }
.reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round var(--radius)); }
.reveal--stagger { opacity: 1; transform: none; }
.reveal--stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal--stagger.is-visible > * { opacity: 1; transform: none; }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: .05s } .reveal--stagger.is-visible > *:nth-child(2) { transition-delay: .12s }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: .19s } .reveal--stagger.is-visible > *:nth-child(4) { transition-delay: .26s }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: .33s } .reveal--stagger.is-visible > *:nth-child(6) { transition-delay: .4s }
.reveal--stagger.is-visible > *:nth-child(7) { transition-delay: .47s } .reveal--stagger.is-visible > *:nth-child(8) { transition-delay: .54s }
.reveal--stagger.is-visible > *:nth-child(9) { transition-delay: .61s } .reveal--stagger.is-visible > *:nth-child(10) { transition-delay: .68s }
.reveal--stagger.is-visible > *:nth-child(11) { transition-delay: .75s } .reveal--stagger.is-visible > *:nth-child(12) { transition-delay: .82s }

/* =========================================================
   About
   ========================================================= */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; padding-bottom: 80px; }
.about__img { border-radius: var(--radius); overflow: hidden; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main { aspect-ratio: 4/3; }
.about__img--small { position: absolute; width: 46%; aspect-ratio: 3/2; inset-inline-end: -20px; bottom: 0; border: 8px solid var(--cream); }
.about__stamp { position: absolute; inset-inline-start: -20px; bottom: 60px; width: 120px; height: 120px; border-radius: 50%; background: var(--teal); color: var(--white); display: grid; place-items: center; align-content: center; text-align: center; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; line-height: 1.3; box-shadow: 0 20px 40px -14px rgba(10,154,139,.6); }
.about__stamp svg { width: 36px; height: 36px; color: var(--red); margin-bottom: 4px; }
.about__content p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.about__content .h2 { margin-bottom: 26px; }
.about__quote { font-family: var(--font-ar-display); font-size: 26px; line-height: 1.7; color: var(--teal-ink); border-right: 4px solid var(--red); padding-right: 20px; margin: 28px 0 40px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--teal); font-weight: 600; }
.stat span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* =========================================================
   Menu
   ========================================================= */
.menu { background: var(--white); }
.tabs { position: relative; display: inline-flex; gap: 4px; padding: 6px; background: var(--cream-2); border-radius: 999px; margin-bottom: 44px; }
.tab { position: relative; z-index: 1; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--muted); transition: color .3s; }
.tab.is-active { color: var(--white); }
.tabs__ink { position: absolute; top: 6px; left: 6px; height: calc(100% - 12px); width: 0; border-radius: 999px; background: var(--teal); transition: transform .5s var(--ease), width .5s var(--ease); z-index: 0; }
.menu__panels { position: relative; }
.menu__panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.menu__panel.is-active { display: grid; }
.menu__panel.is-entering .dish { animation: dishIn .7s var(--ease) both; }
.menu__panel.is-entering .dish:nth-child(2) { animation-delay: .07s } .menu__panel.is-entering .dish:nth-child(3) { animation-delay: .14s }
.menu__panel.is-entering .dish:nth-child(4) { animation-delay: .21s } .menu__panel.is-entering .dish:nth-child(5) { animation-delay: .28s }
.menu__panel.is-entering .dish:nth-child(6) { animation-delay: .35s }
@keyframes dishIn { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
.dish { background: var(--cream); border-radius: var(--radius); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.dish:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -30px rgba(5,65,58,.35); }
.dish__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__ph { width: 100%; height: 100%; display: grid; place-items: center; position: relative; overflow: hidden; }
.dish__ph::before { content: ''; position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--c2); box-shadow: inset 0 0 0 10px var(--c3), 0 20px 40px -20px rgba(0,0,0,.35); transition: transform .8s var(--ease); }
.dish__ph::after { content: ''; position: absolute; width: 30%; aspect-ratio: 1; border-radius: 50%; background: var(--c3); opacity: .8; filter: blur(2px); }
.dish:hover .dish__ph::before { transform: scale(1.08) rotate(20deg); }
.dish__ph { background: var(--c1); }
.dish__ph--spinach { --c1: #d6ede4; --c2: #2f7a5b; --c3: #e7c56b; }
.dish__ph--zaatar { --c1: #efe6cf; --c2: #6b7a3a; --c3: #e8d8a4; }
.dish__ph--halloumi { --c1: #f9e0d4; --c2: #c9442d; --c3: #f8e5b3; }
.dish__ph--kids { --c1: #ffe4d1; --c2: #f0a25f; --c3: #d0463f; }
.dish__ph--fatayer { --c1: #f3e3c9; --c2: #c78a4c; --c3: #f6e6c2; }
.dish__ph--bread { --c1: #f1e3cf; --c2: #b6773f; --c3: #efd9b5; }
.dish__ph--tea { --c1: #f6e7d2; --c2: #b8471f; --c3: #f5c9a0; }
.dish__ph--kulfi { --c1: #e2f1ee; --c2: #f7e5c5; --c3: #86b89c; }
.dish__ph--sweet { --c1: #f0dfd4; --c2: #5a3324; --c3: #d9b58f; }
.dish__ph--dessert { --c1: #fbe8e5; --c2: #e56b73; --c3: #fff1d6; }
.badge { position: absolute; top: 14px; inset-inline-start: 14px; padding: 6px 12px; border-radius: 999px; background: var(--teal); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.badge--red { background: var(--red); }
.dish__body { padding: 22px 24px 26px; }
.dish__body h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--teal-ink); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish__body h3 [lang="ar"] { font-size: 16px; font-weight: 800; color: var(--teal); }
.dish__body p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.menu__foot { margin-top: 56px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.menu__foot p { color: var(--muted); font-size: 14px; }

/* =========================================================
   Experience
   ========================================================= */
.experience { background: var(--teal-ink); color: var(--white); overflow: hidden; }
.experience::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 10%, rgba(10,154,139,.45), transparent 70%), radial-gradient(40% 40% at 10% 90%, rgba(228,19,43,.25), transparent 70%); pointer-events: none; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.feature { padding: 28px 24px; border-radius: 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s; position: relative; overflow: hidden; }
.feature::after { content: ''; position: absolute; inset: 0; background: radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.12), transparent 70%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.feature:hover::after { opacity: 1; }
.feature svg { width: 34px; height: 34px; fill: none; stroke: #9ee4d9; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 18px; transition: transform .5s var(--ease), stroke .3s; }
.feature:hover svg { transform: rotate(-8deg) scale(1.12); stroke: #ffd6da; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 14px; color: rgba(255,255,255,.66); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--cream); overflow: hidden; }
.reviews__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.rating { display: grid; gap: 6px; margin-bottom: 26px; }
.rating strong { font-family: var(--font-display); font-size: 110px; line-height: .9; color: var(--teal-ink); font-weight: 500; }
.rating__stars { display: flex; gap: 2px; color: #f5b400; }
.rating__stars svg { width: 26px; height: 26px; fill: currentColor; }
.rating__stars .half { clip-path: inset(0 40% 0 0); }
.rating span { color: var(--muted); font-size: 14px; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.chip { padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid #e8dfcc; font-size: 13px; font-weight: 600; color: var(--teal-ink); transition: transform .3s var(--ease), border-color .3s; }
.chip:hover { transform: translateY(-2px); border-color: var(--teal); }
.chip b { color: var(--red); margin-inline-start: 4px; }
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius); }
.carousel__track { display: flex; transition: transform .8s var(--ease); will-change: transform; }
.review { flex: 0 0 100%; padding: 40px 44px; background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 60px -40px rgba(5,65,58,.35); position: relative; }
.review::before { content: '“'; position: absolute; top: 10px; inset-inline-end: 30px; font-family: var(--font-display); font-size: 140px; line-height: 1; color: var(--cream-2); }
.review__stars { display: flex; gap: 2px; color: #f5b400; margin-bottom: 18px; }
.review__stars svg { width: 18px; height: 18px; fill: currentColor; }
.review p { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); line-height: 1.4; color: var(--teal-ink); position: relative; }
.review footer { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.review footer strong { font-size: 15px; }
.review footer span { font-size: 13px; color: var(--muted); }
.review__reply { margin-top: 18px; padding: 12px 16px; border-radius: 12px; background: #eef8f6; font-size: 13px; color: var(--teal-deep); border-left: 3px solid var(--teal); }
.review__reply b { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.carousel__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--teal); color: var(--teal); font-size: 18px; transition: background .3s, color .3s, transform .3s var(--ease); }
.carousel__btn:hover { background: var(--teal); color: var(--white); transform: scale(1.08); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 4px; background: #cfc5b0; transition: width .4s var(--ease), background .3s; }
.carousel__dots button.is-active { width: 28px; background: var(--red); }

/* =========================================================
   Visit
   ========================================================= */
.visit { background: var(--white); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.branches { display: grid; gap: 18px; align-content: start; }
.branch { padding: 30px 32px; background: var(--cream); border-radius: var(--radius); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.branch:hover { transform: translateX(8px); box-shadow: 0 30px 50px -30px rgba(5,65,58,.3); }
.branch__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.branch__head h3 { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--teal-ink); }
.branch__head h3 [lang="ar"] { font-size: 18px; color: var(--teal); font-weight: 800; margin-left: 8px; }
.branch .pill { background: var(--teal); border-color: transparent; }
.branch__ar { font-weight: 600; color: var(--teal-ink); text-align: left; }
.branch p { color: var(--muted); font-size: 15px; }
.branch__row { display: flex; gap: 22px; margin-top: 14px; flex-wrap: wrap; }
.link { font-weight: 700; color: var(--red); font-size: 14px; position: relative; }
.link::after { content: ''; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.link:hover::after { transform: scaleX(1); transform-origin: left; }
.hours { display: flex; align-items: center; gap: 18px; padding: 22px 28px; border-radius: var(--radius); background: var(--teal); color: var(--white); }
.hours__clock { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; flex: none; }
.hours__clock svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.hours strong { display: block; font-size: 17px; }
.hours span { font-size: 14px; opacity: .8; display: block; text-align: left; }
.map { border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--cream-2); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.85); }

/* =========================================================
   CTA band
   ========================================================= */
.cta { position: relative; background: var(--teal); color: var(--white); padding: 110px 0; overflow: hidden; text-align: center; isolation: isolate; }
.cta__ring { position: absolute; z-index: -1; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); left: 50%; top: 50%; translate: -50% -50%; animation: ring 6s ease-out infinite; }
.cta__ring--1 { width: 500px; height: 500px; }
.cta__ring--2 { width: 500px; height: 500px; animation-delay: 3s; }
@keyframes ring { from { transform: scale(.4); opacity: .9; } to { transform: scale(2.6); opacity: 0; } }
.cta__ar { font-family: var(--font-ar-display); font-size: clamp(30px, 4vw, 48px); margin-bottom: 8px; }
.cta h2 { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 60px); font-weight: 500; line-height: 1.05; margin-bottom: 34px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--teal-ink); color: rgba(255,255,255,.8); padding: 80px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__col h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #9ee4d9; margin-bottom: 16px; }
.footer__col p { margin-bottom: 8px; font-size: 15px; }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: #ffd6da; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }

/* floating call button (mobile) */
.fab { position: fixed; inset-inline-end: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%; background: var(--red); color: var(--white); display: none; place-items: center; box-shadow: 0 16px 30px -10px rgba(228,19,43,.7); z-index: 700; animation: fabIn .8s cubic-bezier(.34,1.56,.64,1) 2.4s both; }
.fab svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
@keyframes fabIn { from { transform: scale(0); } to { transform: scale(1); } }

/* =========================================================
   Language toggle + RTL (Arabic) layout
   ========================================================= */
.lang { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 38px; padding: 0 12px; border-radius: 999px; border: 1.5px solid currentColor; font-family: var(--font-ar); font-weight: 800; font-size: 14px; line-height: 1; opacity: .9; transition: background .3s, color .3s, transform .3s var(--ease); }
.lang:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-1px); }
.lang--mobile { color: var(--white); font-size: 18px; height: 46px; padding: 0 22px; margin-top: 14px; opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease), transform .6s var(--ease), background .3s; }
.mobile-menu.is-open .lang--mobile { opacity: 1; transform: none; transition-delay: calc(.25s + var(--i) * .07s); }
.mobile-menu__links { justify-items: center; }
body.is-switching main, body.is-switching .footer { animation: langFade .5s var(--ease); }
@keyframes langFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

html[lang="ar"] { --font-body: 'Cairo', 'Segoe UI', sans-serif; --font-display: 'Aref Ruqaa', 'Amiri', serif; }
html[lang="ar"] body { font-family: var(--font-body); }
html[lang="ar"] em, html[lang="ar"] .h2 em, html[lang="ar"] .hero__title em { font-style: normal; }
html[lang="ar"] .h2 { line-height: 1.4; font-size: clamp(34px, 4.6vw, 58px); }
html[lang="ar"] .hero__title { line-height: 1.35; font-size: clamp(40px, 5.4vw, 76px); letter-spacing: 0; }
html[lang="ar"] .hero__title .split { padding-bottom: .1em; }
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: 15px; }
html[lang="ar"] .eyebrow [lang="en"] { font-family: var(--font-body); letter-spacing: .18em; font-size: 11px; direction: ltr; }
html[lang="ar"] .dish__body h3 { font-size: 24px; line-height: 1.5; }
html[lang="ar"] .dish__body h3 [lang="en"] { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--teal); direction: ltr; font-style: italic; }
html[lang="ar"] .branch__head h3 { font-size: 28px; line-height: 1.5; }
html[lang="ar"] .branch__head h3 [lang="en"] { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; color: var(--teal); margin-inline-start: 8px; direction: ltr; }
html[lang="ar"] .review p { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.8; }
html[lang="ar"] .stat strong { font-family: 'Cormorant Garamond', Georgia, serif; }
html[lang="ar"] .stat span { letter-spacing: 0; font-size: 13px; }
html[lang="ar"] .hero__meta { letter-spacing: 0; font-size: 14px; }
html[lang="ar"] .badge, html[lang="ar"] .hv__badge small, html[lang="ar"] .footer__col h4, html[lang="ar"] .about__stamp { letter-spacing: 0; }
html[lang="ar"] .footer__col h4 { font-size: 15px; }
html[lang="ar"] .hv__badge small { font-size: 11px; }
html[lang="ar"] .cta h2 { line-height: 1.5; font-size: clamp(30px, 4vw, 52px); }
html[lang="ar"] .cta__ar { font-family: var(--font-ar); font-weight: 600; font-size: clamp(18px, 2vw, 24px); opacity: .85; }
html[lang="ar"] .feature h3, html[lang="ar"] .review footer strong, html[lang="ar"] .hours strong { font-size: 17px; }
html[lang="ar"] .btn { font-size: 15px; }
html[lang="ar"] .marquee { direction: ltr; }
html[lang="ar"] .marquee__track { animation-direction: reverse; }
html[lang="ar"] [lang="en"] { direction: ltr; unicode-bidi: isolate; }

[dir="rtl"] .hero__ar, [dir="rtl"] .branch__ar, [dir="rtl"] .hours span { text-align: start; }
[dir="rtl"] .about__quote { border-right: 0; border-left: 4px solid var(--red); padding-right: 0; padding-left: 20px; }
[dir="rtl"] .mobile-menu__bg { clip-path: circle(0% at 44px 42px); }
[dir="rtl"] .mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at 44px 42px); }
[dir="rtl"] .branch:hover { transform: translateX(-8px); }
[dir="rtl"] .logo--footer { transform-origin: right top; }
[dir="rtl"] .nav__en { margin-left: 0; margin-right: 4px; }
[dir="rtl"] .hero__scroll { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .review__reply { border-left: 0; border-right: 3px solid var(--teal); }
[dir="rtl"] .hv--1 { right: auto; left: 8%; }
[dir="rtl"] .hv--2 { left: auto; right: 0; }
[dir="rtl"] .hv--3 { right: auto; left: 0; }
[dir="rtl"] .carousel__btn { transform: scaleX(-1); }
[dir="rtl"] .carousel__btn:hover { transform: scaleX(-1) scale(1.08); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  .menu__panel { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav__links, .nav__cta .btn, .nav .lang { display: none; }
  .burger { display: flex; }
  .nav__en { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 30px); }
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { height: 62vw; max-height: 480px; }
  .hero__scroll { display: none; }
  .section__head, .about__grid, .reviews__grid, .visit__grid { grid-template-columns: 1fr; }
  .section__head { gap: 16px; margin-bottom: 40px; }
  .about__media { padding-bottom: 60px; }
  .about__stamp { inset-inline-start: 10px; width: 100px; height: 100px; }
  .about__img--small { inset-inline-end: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .fab { display: grid; }
  .logo--footer { transform: scale(.6); margin-bottom: -80px; }
  .map { min-height: 340px; }
}
@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .hero__title { font-size: clamp(44px, 13vw, 60px); }
  .hero__actions .btn { width: 100%; }
  .menu__panel { grid-template-columns: 1fr; }
  .tabs { width: 100%; display: flex; }
  .tab { flex: 1; padding: 12px 8px; font-size: 13px; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature { padding: 20px 16px; }
  .feature svg { width: 28px; height: 28px; margin-bottom: 12px; }
  .feature h3 { font-size: 15px; }
  .feature p { font-size: 13px; }
  .review { padding: 30px 26px; }
  .rating strong { font-size: 84px; }
  .footer__grid { grid-template-columns: 1fr; }
  .logo__ar { font-size: 96px; }
  .logo__mark { transform: translateX(-98px) rotate(-8deg); }
  .logo--pre .logo__mark { animation-name: markInSm; }
  @keyframes markInSm { from { opacity: 0; transform: translateX(-98px) rotate(-30deg) scale(.4); } to { opacity: 1; transform: translateX(-98px) rotate(-8deg) scale(1); } }
  .hv__badge { width: 100px; height: 100px; }
  .hv__badge [lang="ar"] { font-size: 15px; }
  .cta__ring--1, .cta__ring--2 { width: 300px; height: 300px; }
}

/* =========================================================
   Reduced motion — keep it accessible
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal--stagger > *, [data-hero], .hv, .hv__badge { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__title .split > i { transform: none !important; }
  html { scroll-behavior: auto; }
}
