/* ═══════════════════════════════════════════════════════════
   Makan Indian Restaurant — stylesheet
   Brand: navy #404970 · teal #2a8e84 · warm gold accent
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy-950: #0a0d18;
  --navy-900: #0f1322;
  --navy-800: #171c30;
  --navy-700: #222945;
  --navy: #404970;
  --teal: #2a8e84;
  --teal-light: #3fb3a7;
  --teal-dark: #1f6d65;
  --gold: #c9a35c;
  --gold-light: #e2c283;
  --cream: #f5efe6;
  --cream-2: #ece4d6;
  --cream-3: #e2d8c6;
  --ink: #1a1d2b;
  --ink-2: #454a5e;
  --white: #ffffff;
  --on-dark: rgba(245, 239, 230, 0.72);
  --on-dark-strong: #f5efe6;

  --font-display: 'Cormorant Garamond', 'Amiri', Georgia, serif;
  --font-body: 'Jost', 'Tajawal', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 18px;
  --nav-h: 84px;
}

[dir="rtl"] {
  --font-display: 'Amiri', 'Cormorant Garamond', serif;
  --font-body: 'Tajawal', 'Jost', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; height: 100vh; }
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; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
p { margin: 0; }
::selection { background: var(--teal); color: #fff; }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }
.section--dark { background: var(--navy-900); color: var(--on-dark-strong); }

[dir="rtl"] body { letter-spacing: 0; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { line-height: 1.35; }

/* ─── Type ──────────────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 18px;
}
[dir="rtl"] .kicker { letter-spacing: 0; font-size: 15px; font-weight: 700; }
.section--dark .kicker { color: var(--gold-light); }
.line-deco { display: inline-block; width: 36px; height: 1px; background: currentColor; opacity: 0.8; }
.section-title {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.section-head--center { text-align: center; }
.section-head--center .section-title { margin-inline: auto; max-width: 22ch; }
.section-sub { color: var(--ink-2); font-size: 17px; max-width: 52ch; margin-top: 18px; font-weight: 300; }
.section--dark .section-sub { color: var(--on-dark); }
.section-head--center .section-sub { margin-inline: auto; }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .4s var(--ease-out), transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
[dir="rtl"] .btn { letter-spacing: 0; font-size: 15px; font-weight: 700; }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: currentColor; opacity: 0; transform: scaleX(0); transform-origin: right center;
  transition: transform .5s var(--ease-expo), opacity .5s;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left center; opacity: .12; }
.btn--sm { padding: 12px 22px; font-size: 12px; }
.btn--gold { background: var(--gold); color: var(--navy-950); box-shadow: 0 10px 30px -10px rgba(201, 163, 92, .6); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 163, 92, .7); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 30px -10px rgba(42, 142, 132, .6); }
.btn--teal:hover { transform: translateY(-2px); background: var(--teal-light); box-shadow: 0 18px 40px -12px rgba(42, 142, 132, .7); }
.btn--outline { border: 1px solid rgba(245, 239, 230, .35); color: var(--on-dark-strong); backdrop-filter: blur(6px); }
.btn--outline:hover { border-color: var(--on-dark-strong); transform: translateY(-2px); }
.btn--outline-dark { border: 1px solid rgba(26, 29, 43, .25); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--ink); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 500;
  position: relative; margin-top: 8px;
}
.link-arrow::after { content: '→'; transition: transform .3s var(--ease-out); }
[dir="rtl"] .link-arrow::after { content: '←'; }
.link-arrow:hover::after { transform: translateX(4px); }
[dir="rtl"] .link-arrow:hover::after { transform: translateX(-4px); }

/* ─── Preloader ─────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  pointer-events: all;
}
.preloader__panel {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--navy-900);
}
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }
.preloader__content {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 22px;
  width: min(420px, 70vw);
}
.preloader__logo { position: relative; width: 100%; }
.preloader__logo-img { width: 100%; opacity: 0.95; }
.preloader__logo-veil {
  position: absolute; inset: 0; background: var(--navy-900);
  transform-origin: right center;
}
[dir="rtl"] .preloader__logo-veil { transform-origin: left center; }
.preloader__welcome {
  font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--gold-light);
  opacity: 0; transform: translateY(10px);
}
[dir="rtl"] .preloader__welcome { font-style: normal; }
.preloader__bar { width: 100%; height: 1px; background: rgba(245, 239, 230, .15); overflow: hidden; }
.preloader__bar-fill { display: block; height: 100%; width: 100%; background: var(--teal-light); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .preloader__bar-fill { transform-origin: right; }
.preloader__count {
  position: absolute; bottom: -48px; inset-inline-end: 0;
  font-family: var(--font-display); font-size: 14px; letter-spacing: .2em; color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}
.preloader__count::after { content: '%'; }

/* ─── Cursor ────────────────────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  transform: translate(-50%, -50%); transition: opacity .3s;
}
.cursor__ring {
  position: absolute; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold);
  transform: translate(-50%, -50%); transition: width .35s var(--ease-out), height .35s var(--ease-out), background .35s, border-color .35s, opacity .3s;
  mix-blend-mode: difference;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(201, 163, 92, .15); }
.cursor.is-view .cursor__ring { width: 84px; height: 84px; background: var(--gold); border-color: var(--gold); mix-blend-mode: normal; }
.cursor.is-view .cursor__ring::after {
  content: 'VIEW'; position: absolute; inset: 0; display: grid; place-items: center;
  font: 500 10px/1 var(--font-body); letter-spacing: .2em; color: var(--navy-950);
}
[dir="rtl"] .cursor.is-view .cursor__ring::after { content: 'عرض'; letter-spacing: 0; font-size: 12px; }
.cursor.is-hidden { opacity: 0; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transform: translateY(-100%);
  transition: background .5s, backdrop-filter .5s, box-shadow .5s, height .4s var(--ease-out), transform .6s var(--ease-expo);
}
.nav.is-ready { transform: translateY(0); }
.nav.is-scrolled {
  height: 68px;
  background: rgba(15, 19, 34, .82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .6);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.nav__logo img { height: 40px; width: auto; transition: height .4s var(--ease-out); }
.nav.is-scrolled .nav__logo img { height: 32px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  position: relative; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--on-dark-strong); padding: 6px 0;
}
[dir="rtl"] .nav__links a { letter-spacing: 0; font-size: 15px; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold-light); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-expo);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em; color: var(--on-dark);
  padding: 8px 12px; border: 1px solid rgba(245, 239, 230, .2); border-radius: 999px;
  transition: border-color .3s;
}
.lang-toggle:hover { border-color: rgba(245, 239, 230, .6); }
.lang-toggle__opt { transition: color .3s; }
.lang-toggle__opt.is-active { color: var(--gold-light); }
.lang-toggle__sep { opacity: .4; }
.lang-toggle__opt[data-lang="ar"] { font-family: 'Tajawal', sans-serif; font-weight: 700; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 210; }
.burger span {
  position: absolute; left: 10px; width: 24px; height: 1.5px; background: var(--on-dark-strong);
  transition: transform .4s var(--ease-expo), opacity .3s, top .4s var(--ease-expo);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter); visibility: hidden; pointer-events: none;
}
.mobile-menu.is-open { visibility: visible; pointer-events: all; }
.mobile-menu__bg { position: absolute; inset: 0; background: var(--navy-900); clip-path: circle(0% at calc(100% - 44px) 42px); transition: clip-path .8s var(--ease-expo); }
[dir="rtl"] .mobile-menu__bg { clip-path: circle(0% at 44px 42px); }
.mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at calc(100% - 44px) 42px); }
[dir="rtl"] .mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at 44px 42px); }
.mobile-menu__links { position: relative; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: clamp(38px, 9vw, 60px); color: var(--on-dark-strong); line-height: 1.15;
  opacity: 0; transform: translateY(30px);
}
.mobile-menu__footer { position: relative; margin-top: 40px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; opacity: 0; }
.mobile-menu__meta { color: var(--on-dark); font-size: 14px; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--navy-900); color: var(--on-dark-strong);
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .28; transform: scale(1.15); filter: saturate(.85); }
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 45%, rgba(42, 142, 132, .18), transparent 60%),
    linear-gradient(180deg, rgba(15, 19, 34, .55) 0%, rgba(15, 19, 34, .35) 45%, var(--navy-900) 100%),
    linear-gradient(90deg, var(--navy-900) 0%, rgba(15, 19, 34, .6) 45%, rgba(15, 19, 34, .2) 100%);
}
[dir="rtl"] .hero__bg-overlay {
  background:
    radial-gradient(ellipse 60% 60% at 30% 45%, rgba(42, 142, 132, .18), transparent 60%),
    linear-gradient(180deg, rgba(15, 19, 34, .55) 0%, rgba(15, 19, 34, .35) 45%, var(--navy-900) 100%),
    linear-gradient(270deg, var(--navy-900) 0%, rgba(15, 19, 34, .6) 45%, rgba(15, 19, 34, .2) 100%);
}
.hero__ornament {
  position: absolute; width: 520px; height: 520px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(201, 163, 92, .16), transparent 65%); filter: blur(30px);
}
.hero__ornament--l { top: -120px; inset-inline-start: -160px; }
.hero__ornament--r { bottom: -200px; inset-inline-end: 10%; background: radial-gradient(circle, rgba(42, 142, 132, .22), transparent 65%); }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.hero__kicker { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-light); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 26px; }
[dir="rtl"] .hero__kicker { letter-spacing: 0; font-size: 16px; font-weight: 700; }
.hero__title {
  font-size: clamp(46px, 6.6vw, 92px); line-height: 1.02; letter-spacing: -0.015em; font-weight: 600;
  max-width: 12ch; margin-bottom: 28px;
}
[dir="rtl"] .hero__title { line-height: 1.3; letter-spacing: 0; font-weight: 700; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .word > span { display: inline-block; }
.hero__sub { font-size: clamp(16px, 1.3vw, 19px); font-weight: 300; color: var(--on-dark); max-width: 52ch; margin-bottom: 40px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero__proof { display: flex; align-items: center; gap: 14px; color: var(--on-dark); font-size: 14px; }
.hero__proof strong { color: var(--on-dark-strong); font-weight: 500; }
.hero__stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__arch { position: relative; width: min(100%, 440px); aspect-ratio: 400 / 620; }
.hero__arch-svg { position: absolute; width: 0; height: 0; }
.hero__arch-img {
  position: absolute; inset: 0; clip-path: url(#archClip); overflow: hidden;
  background: var(--navy-800);
}
.hero__arch-reveal { position: absolute; inset: 0; }
.hero__arch-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); }
.hero__arch-frame {
  position: absolute; inset: -18px; clip-path: url(#archClip); background: var(--teal);
  opacity: .35;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 620' preserveAspectRatio='none'%3E%3Cpath d='M200,0 C248,37 320,80 400,186 L400,620 L0,620 L0,186 C80,80 152,37 200,0 Z' fill='none' stroke='%23000' stroke-width='3'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 620' preserveAspectRatio='none'%3E%3Cpath d='M200,0 C248,37 320,80 400,186 L400,620 L0,620 L0,186 C80,80 152,37 200,0 Z' fill='none' stroke='%23000' stroke-width='3'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  clip-path: none;
}
.hero__badge {
  position: absolute; bottom: 34px; inset-inline-start: -40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 16px 22px; border-radius: 16px;
  background: rgba(15, 19, 34, .7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 239, 230, .12);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
}
.hero__badge-num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--gold-light); font-weight: 600; }
.hero__badge-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero__badge-txt { font-size: 12px; color: var(--on-dark); letter-spacing: .04em; }

.hero__scroll {
  position: absolute; bottom: 36px; inset-inline-start: var(--gutter); z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--on-dark);
}
[dir="rtl"] .hero__scroll { letter-spacing: 0; font-size: 13px; }
.hero__scroll-line { width: 60px; height: 1px; background: rgba(245, 239, 230, .3); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ''; position: absolute; inset: 0; background: var(--gold-light);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ─── Marquee ───────────────────────────────────────────── */
.marquee {
  position: relative; z-index: 3; background: var(--gold); color: var(--navy-950);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.02); margin-top: -30px;
}
.marquee__track { display: inline-flex; gap: 0; will-change: transform; animation: marquee 40s linear infinite; }
[dir="rtl"] .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 28px; padding-inline-end: 28px;
  font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: .02em;
}
.marquee__item::after { content: '✦'; font-size: 12px; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Story ─────────────────────────────────────────────── */
.story { background: var(--cream); overflow: hidden; padding-top: clamp(100px, 12vw, 170px); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story__media { position: relative; aspect-ratio: 1 / 1.1; }
.story__img { position: absolute; overflow: hidden; border-radius: var(--radius); box-shadow: 0 40px 80px -30px rgba(26, 29, 43, .45); }
.story__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.2s var(--ease-out); }
.story__img:hover img { transform: scale(1.02); }
.story__img--main { top: 0; inset-inline-start: 0; width: 72%; height: 78%; }
.story__img--small { bottom: 0; inset-inline-end: 0; width: 52%; height: 52%; border: 8px solid var(--cream); }
.story__arch-deco { position: absolute; top: -40px; inset-inline-end: 6%; width: 120px; opacity: .18; pointer-events: none; }
.story__arch-deco img { width: 100%; }
.story__content p { color: var(--ink-2); font-size: 17px; font-weight: 300; margin-bottom: 18px; }
.story__content .section-title { margin-bottom: 26px; }
.story__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin-top: 30px; }
.story__features li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }
.story__feature-icon {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(42, 142, 132, .1); color: var(--teal); font-size: 17px;
  transition: transform .4s var(--ease-out), background .4s;
}
.story__features li:hover .story__feature-icon { transform: rotate(-8deg) scale(1.08); background: rgba(42, 142, 132, .2); }

/* ─── Signature ─────────────────────────────────────────── */
.signature { overflow: hidden; }
.signature .section-head { margin-bottom: 40px; }
.signature__scroller { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.signature__scroller::-webkit-scrollbar { display: none; }
.signature__scroller.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.signature__track {
  display: flex; gap: 24px; padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); padding-bottom: 20px;
  width: max-content;
}
.sig-card {
  position: relative; flex: 0 0 auto; width: clamp(260px, 26vw, 340px); aspect-ratio: 3 / 4;
  border-radius: var(--radius); overflow: hidden; background: var(--navy-800);
  transform-style: preserve-3d; perspective: 900px;
  transition: box-shadow .5s var(--ease-out);
}
.sig-card:hover { box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .9); }
.sig-card__img { position: absolute; inset: 0; }
.sig-card__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.1s var(--ease-out); }
.sig-card:hover .sig-card__img img { transform: scale(1.14); }
.sig-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 13, 24, .55) 70%, rgba(10, 13, 24, .95) 100%);
}
.sig-card__body { position: absolute; inset-inline: 0; bottom: 0; padding: 26px; transform: translateZ(40px); }
.sig-card__num { font-family: var(--font-display); font-size: 13px; letter-spacing: .3em; color: var(--gold-light); margin-bottom: 8px; display: block; }
.sig-card__name { font-family: var(--font-display); font-size: 28px; line-height: 1.1; color: var(--on-dark-strong); }
.sig-card__ar { font-family: 'Tajawal', sans-serif; font-size: 15px; color: var(--on-dark); margin-top: 4px; }
[dir="rtl"] .sig-card__ar { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .05em; }
.sig-card__desc {
  font-size: 14px; color: var(--on-dark); font-weight: 300; margin-top: 10px;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease-out), opacity .5s .1s;
}
.sig-card:hover .sig-card__desc { max-height: 100px; opacity: 1; }
.sig-card__price {
  position: absolute; top: 20px; inset-inline-end: 20px; padding: 8px 14px; border-radius: 999px;
  background: rgba(15, 19, 34, .65); backdrop-filter: blur(10px); border: 1px solid rgba(245, 239, 230, .15);
  font-size: 13px; font-weight: 500; color: var(--gold-light); letter-spacing: .05em;
}

/* ─── Menu ──────────────────────────────────────────────── */
.menu { background: var(--cream); }
.menu__tabs-wrap { position: sticky; top: 68px; z-index: 20; margin-bottom: 44px; padding-block: 12px; background: linear-gradient(var(--cream) 80%, transparent); }
.menu__tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 6px 4px; justify-content: flex-start;
}
.menu__tabs::-webkit-scrollbar { display: none; }
.menu__tab {
  flex: 0 0 auto; position: relative; padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2); border: 1px solid rgba(26, 29, 43, .12);
  background: rgba(255, 255, 255, .5);
  transition: color .3s, border-color .3s, transform .3s var(--ease-out), background .3s, box-shadow .3s;
  white-space: nowrap;
}
.menu__tab:hover { transform: translateY(-2px); border-color: rgba(26, 29, 43, .3); }
.menu__tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 10px 25px -10px rgba(64, 73, 112, .6); }
.menu__tab small { opacity: .55; margin-inline-start: 6px; font-size: 12px; }

.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; min-height: 300px; }
.menu-item {
  position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: center;
  padding: 14px; border-radius: 16px; background: #fff;
  border: 1px solid rgba(26, 29, 43, .06);
  box-shadow: 0 1px 2px rgba(26, 29, 43, .04);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
  will-change: transform;
}
.menu-item:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(26, 29, 43, .35); border-color: rgba(42, 142, 132, .3); }
.menu-item__img { width: 110px; height: 110px; border-radius: 12px; overflow: hidden; background: var(--navy-800); }
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .8s var(--ease-out); }
.menu-item:hover .menu-item__img img { transform: scale(1.12); }
.menu-item__body { min-width: 0; }
.menu-item__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.menu-item__name { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1.15; color: var(--ink); }
[dir="rtl"] .menu-item__name { font-size: 20px; }
.menu-item__price { font-weight: 500; color: var(--teal); white-space: nowrap; font-size: 15px; font-variant-numeric: tabular-nums; }
.menu-item__price small { font-size: 11px; margin-inline-start: 2px; opacity: .8; }
.menu-item__alt { font-size: 13px; color: var(--ink-2); font-family: 'Tajawal', sans-serif; margin-top: 2px; }
[dir="rtl"] .menu-item__alt { font-family: 'Jost', sans-serif; letter-spacing: .02em; }
.menu-item__desc {
  font-size: 13.5px; color: var(--ink-2); font-weight: 300; margin-top: 8px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.menu-item__meta { display: flex; gap: 10px; margin-top: 8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); opacity: .8; }
[dir="rtl"] .menu-item__meta { letter-spacing: 0; font-size: 12px; }
.menu-item__tag { color: var(--gold); font-weight: 600; }
.menu__more { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 56px; }

/* ─── Stats ─────────────────────────────────────────────── */
.stats { position: relative; padding-block: clamp(70px, 8vw, 110px); overflow: hidden; }
.stats__bg { position: absolute; inset: 0; }
.stats__bg img { width: 100%; height: 130%; object-fit: cover; opacity: .18; filter: saturate(.7); }
.stats__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-900) 0%, rgba(15, 19, 34, .7) 50%, var(--navy-900) 100%); }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(48px, 6vw, 84px); line-height: 1; color: var(--gold-light); font-weight: 600; font-variant-numeric: tabular-nums; }
.stat__small { font-size: .35em; letter-spacing: .1em; margin-inline-start: 4px; vertical-align: super; }
.stat__label { display: block; margin-top: 10px; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark); }
[dir="rtl"] .stat__label { letter-spacing: 0; font-size: 15px; }
.stat { position: relative; }
.stat + .stat::before { content: ''; position: absolute; inset-inline-start: -16px; top: 20%; height: 60%; width: 1px; background: rgba(245, 239, 230, .12); }

/* ─── Gallery ───────────────────────────────────────────── */
.gallery { background: var(--cream-2); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gal-item { position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; background: var(--navy-800); }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1s var(--ease-out), filter .6s; }
.gal-item:hover img { transform: scale(1.1); filter: brightness(.85); }
.gal-item__cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 18px;
  background: linear-gradient(transparent, rgba(10, 13, 24, .85));
  color: var(--on-dark-strong); font-family: var(--font-display); font-size: 20px;
  transform: translateY(100%); transition: transform .6s var(--ease-expo);
}
.gal-item:hover .gal-item__cap { transform: translateY(0); }

/* ─── Reviews ───────────────────────────────────────────── */
.reviews__slider { position: relative; max-width: 860px; margin-inline: auto; text-align: center; padding-top: 40px; }
.reviews__quote-mark {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 180px; line-height: 1; color: var(--gold); opacity: .25; pointer-events: none;
}
.reviews__track { display: grid; }
.review { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.review.is-active { visibility: visible; }
.review__stars { color: var(--gold); letter-spacing: 4px; font-size: 18px; }
.review__text { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; font-style: italic; color: var(--on-dark-strong); max-width: 30ch; }
[dir="rtl"] .review__text { font-style: normal; }
.review__name { font-style: normal; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 13px; color: var(--gold-light); }
[dir="rtl"] .review__name { letter-spacing: 0; font-size: 15px; }
.review__meta { display: block; font-size: 12px; color: var(--on-dark); letter-spacing: .05em; text-transform: none; margin-top: 4px; }
.reviews__nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 24px; }
.reviews__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(245, 239, 230, .2); color: var(--on-dark-strong);
  transition: background .3s, border-color .3s, transform .3s var(--ease-out);
}
.reviews__btn:hover { background: var(--teal); border-color: var(--teal); transform: scale(1.08); }
[dir="rtl"] .reviews__btn { transform: scaleX(-1); }
[dir="rtl"] .reviews__btn:hover { transform: scaleX(-1) scale(1.08); }
.reviews__dots { display: flex; gap: 8px; }
.reviews__dot { width: 32px; height: 3px; border-radius: 2px; background: rgba(245, 239, 230, .2); overflow: hidden; position: relative; }
.reviews__dot::after { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .reviews__dot::after { transform-origin: right; }
.reviews__dot.is-active::after { animation: dotFill 6s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }
.reviews__google { text-align: center; margin-top: 48px; }
.reviews__google a { color: var(--on-dark); font-size: 14px; letter-spacing: .05em; border-bottom: 1px solid rgba(245, 239, 230, .2); padding-bottom: 3px; transition: color .3s, border-color .3s; }
.reviews__google a:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── Visit ─────────────────────────────────────────────── */
.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: stretch; }
.visit__block { margin-top: 34px; }
.visit__block h3 { font-family: var(--font-body); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; font-weight: 500; }
[dir="rtl"] .visit__block h3 { letter-spacing: 0; font-size: 14px; font-weight: 700; }
.visit__block p { color: var(--ink-2); font-size: 17px; max-width: 42ch; }
.visit__hours { display: flex; align-items: baseline; gap: 12px; }
.visit__hours strong { color: var(--ink); font-weight: 500; white-space: nowrap; }
.visit__dots { flex: 1; border-bottom: 1px dotted rgba(26, 29, 43, .3); min-width: 30px; transform: translateY(-5px); }
.visit__note { font-size: 14px !important; margin-top: 6px; opacity: .8; }
.visit__phone { font-family: var(--font-display); font-size: 34px; color: var(--ink); font-weight: 600; display: inline-block; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.visit__map { position: relative; min-height: 460px; }
.visit__map-frame {
  position: absolute; inset: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(26, 29, 43, .5); border: 1px solid rgba(26, 29, 43, .08);
  filter: grayscale(.2) contrast(1.05);
}
.visit__map-frame iframe { width: 100%; height: 100%; }

/* ─── Footer ────────────────────────────────────────────── */
.footer { background: var(--navy-950); color: var(--on-dark); padding-top: 80px; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(245, 239, 230, .08); }
.footer__brand img { width: 180px; margin-bottom: 20px; }
.footer__brand p { max-width: 32ch; font-size: 15px; font-weight: 300; }
.footer__col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-weight: 500; }
[dir="rtl"] .footer__col h4 { letter-spacing: 0; font-size: 14px; font-weight: 700; }
.footer__col a, .footer__col p { display: block; font-size: 15px; margin-bottom: 10px; transition: color .3s, transform .3s var(--ease-out); }
.footer__col a:hover { color: var(--on-dark-strong); transform: translateX(4px); }
[dir="rtl"] .footer__col a:hover { transform: translateX(-4px); }
.footer__big {
  font-family: var(--font-display); font-size: clamp(90px, 22vw, 320px); line-height: .85; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(245, 239, 230, .12);
  padding: 50px 0 10px; letter-spacing: -.02em; font-weight: 700; user-select: none;
}
[dir="rtl"] .footer__big { line-height: 1.1; font-size: clamp(90px, 22vw, 260px); letter-spacing: 0; }
.footer__big span { display: inline-block; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0 32px; font-size: 13px; opacity: .7; }
.footer__ar { font-family: 'Tajawal', sans-serif; }

/* ─── Floating & misc ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; inset-inline-end: 28px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 15px 35px -10px rgba(37, 211, 102, .7);
  transform: scale(0); transition: transform .5s var(--ease-expo), box-shadow .3s;
}
.wa-float.is-visible { transform: scale(1); }
.wa-float:hover { transform: scale(1.1) rotate(-6deg); }
.wa-float svg { position: relative; z-index: 2; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: pulse 2.4s var(--ease-out) infinite; z-index: 1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

.to-top {
  position: fixed; bottom: 100px; inset-inline-end: 34px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(26, 29, 43, .2);
  background: rgba(245, 239, 230, .85); backdrop-filter: blur(10px); color: var(--ink);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease-out), background .3s, color .3s;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.to-top:hover { background: var(--navy); color: #fff; }

.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(10, 13, 24, .94);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__fig { margin: 0; max-width: min(900px, 90vw); text-align: center; transform: scale(.92); opacity: 0; transition: transform .5s var(--ease-expo), opacity .4s; }
.lightbox.is-open .lightbox__fig { transform: scale(1); opacity: 1; }
.lightbox__fig img { max-height: 78vh; width: auto; margin-inline: auto; border-radius: 12px; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9); }
.lightbox__fig figcaption { color: var(--on-dark-strong); font-family: var(--font-display); font-size: 24px; margin-top: 18px; }
.lightbox__close { position: absolute; top: 24px; inset-inline-end: 28px; width: 48px; height: 48px; border-radius: 50%; color: #fff; border: 1px solid rgba(255, 255, 255, .25); transition: background .3s, transform .3s; }
.lightbox__close:hover { background: var(--teal); transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; color: #fff; border: 1px solid rgba(255, 255, 255, .25); font-size: 18px; transition: background .3s; }
.lightbox__nav:hover { background: var(--teal); }
.lightbox__nav--prev { inset-inline-start: 24px; }
.lightbox__nav--next { inset-inline-end: 24px; }
[dir="rtl"] .lightbox__nav { transform: translateY(-50%) scaleX(-1); }

/* ─── Reveal helpers (initial states set by JS; CSS fallback) ── */
.no-js .reveal, .no-js .reveal-stagger > * { opacity: 1 !important; transform: none !important; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr .8fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat + .stat::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .burger { display: block; }
  .hero { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 90px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__arch { width: min(78%, 320px); aspect-ratio: 400 / 500; }
  .hero__badge { inset-inline-start: -14px; bottom: 16px; padding: 12px 16px; }
  .hero__badge-num { font-size: 30px; }
  .hero__title { max-width: none; }
  .hero__scroll { display: none; }
  .story__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 1 / 1; max-width: 520px; }
  .visit__map { min-height: 360px; }
  .menu__tabs-wrap { top: 60px; }
}
@media (max-width: 640px) {
  :root { --nav-h: 70px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); }
  .hero__cta .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item--wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 90px 1fr; }
  .menu-item__img { width: 90px; height: 90px; }
  .story__features { grid-template-columns: 1fr; }
  .marquee__item { font-size: 19px; }
  .wa-float { bottom: 20px; inset-inline-end: 20px; width: 54px; height: 54px; }
  .to-top { bottom: 88px; inset-inline-end: 26px; }
  .lightbox__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}
