:root {
  --paper: #faf9f6;
  --foam: #f2f1ec;
  --ink: #211d18;
  --muted: #6e6a61;
  --line: #e4e1d8;
  --gold: #e8bc53;
  --gold-ink: #171310;
  --accent: #a97e14;
  --ember: #b4552d;
  --teal: #2f6a62;
  --deep: #161614;
  --deep-2: #1e1e1b;
  --on-dark: #ece9e2;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  --ar: "Cairo", "Plus Jakarta Sans", Arial, sans-serif;
  --v: 20260901-3;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[dir="rtl"] { font-family: var(--ar); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0;
}
[dir="rtl"] body { font-family: var(--ar); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip {
  position: absolute; left: 12px; top: -100px; background: var(--gold); color: var(--gold-ink);
  padding: 12px 18px; z-index: 80;
}
.skip:focus { top: 12px; }
.wrap { width: min(1180px, calc(100% - 8vw)); margin-inline: auto; }
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.band-deep .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .footer .eyebrow { color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.045em; line-height: 1; margin: 0; }
h1 { font-size: clamp(52px, 7.4vw, 104px); line-height: 0.92; }
h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
h2 { font-size: clamp(40px, 4.8vw, 68px); }
h3 { font-size: clamp(26px, 3vw, 36px); }
.lead { font-family: var(--serif); font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 36rem; }
p { max-width: 65ch; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 22px; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.11em; font-size: 11px; border: 1px solid #ffffff99;
  background: transparent; color: #fff; transition: 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: #fff; color: var(--ink); }
.btn.gold { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); font-weight: 600; }
.btn.gold:hover { background: #fff; }
.btn.ink { background: var(--ink); color: var(--foam); border-color: var(--ink); }
.text-btn {
  display: inline-flex; gap: 8px; padding: 5px 0; border-bottom: 1px solid currentColor;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px;
}

/* ---------- header: frosted floating bar ---------- */
.site-header {
  position: absolute; inset: 14px 4.5vw auto; z-index: 30; min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 22px; color: #fff;
  background: rgba(23, 19, 16, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.solid { position: relative; inset: auto; margin: 14px 4.5vw 0; background: rgba(23, 19, 16, 0.94); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand .word { font-family: var(--serif); font-style: italic; font-size: 25px; letter-spacing: -0.02em; white-space: nowrap; }
.nav { display: flex; gap: 6px; font-size: 13.5px; font-weight: 500; }
.nav a { text-decoration: none; opacity: 0.92; padding: 10px 13px; border-radius: 10px; transition: 0.2s; }
.nav a:hover { background: rgba(255, 255, 255, 0.1); opacity: 1; }
.nav a[aria-current="page"] { opacity: 1; background: rgba(232, 188, 83, 0.18); color: var(--gold); }
.header-end { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 4px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.lang a { text-decoration: none; opacity: 0.6; padding: 8px 7px; }
.lang a[aria-current="true"] { opacity: 1; color: var(--gold); }
.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none; color: inherit; padding: 0; cursor: pointer;
}
.burger i, .burger i::before {
  display: block; width: 22px; height: 1.5px; background: currentColor; content: "";
}
.burger i { box-shadow: 0 6px 0 currentColor; }
.nav-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: rgba(23, 19, 16, 0.97); border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 18px 22px 24px;
}
.nav-panel.open { display: grid; gap: 14px; }
.nav-panel a { color: #fff; font-family: var(--serif); font-size: 22px; text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; min-height: 700px; color: #fff;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform: scale(1.02);
  animation: ken 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 9, 7, 0.88), rgba(12, 9, 7, 0.28) 55%, rgba(12, 9, 7, 0.38)),
    rgba(12, 9, 7, 0.18);
}
@keyframes ken { to { transform: scale(1.06); } }
.hero-copy { position: relative; z-index: 1; padding: 0 4.5vw 7vh; max-width: 900px; width: 100%; }
.hero-copy .lead { color: #e6ddcf; text-shadow: 0 1px 18px rgba(0,0,0,.55); }
.hero-copy h1 { text-shadow: 0 2px 34px rgba(0,0,0,.6); }
.actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 28px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px;
}
.trust-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  padding: 13px 18px; border-radius: 14px; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(30, 25, 18, 0.08);
  transition: 0.25s var(--ease);
}
.trust-card:hover { transform: translateY(-2px); border-color: var(--gold); }
.trust-card .mark { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; }
.trust-card .num { font-family: var(--serif); font-size: 26px; line-height: 1; color: var(--ink); }
.trust-card .stars { color: #fbbc04; display: flex; gap: 1px; margin: 3px 0 2px; }
.trust-card .stars.green { color: #00aa6c; }
.trust-card small { display: block; font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }
.avail-line { margin-top: 20px; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- sections ---------- */
section { padding: clamp(2.8rem, 6vw, 5rem) 0; }
.band-deep { background: var(--deep); color: var(--on-dark); }
.band-foam { background: var(--foam); }
.intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: end; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); color: var(--ink); text-decoration: none; display: block; border-radius: 4px; overflow: hidden; }
.card img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.8s ease; }
.card:hover img { transform: scale(1.045); }
.card-body { padding: 26px 24px 30px; }
.card .meta { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ember); }
.mosaic { display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 500px 440px; gap: 18px; }
.tile { position: relative; overflow: hidden; color: #fff; min-height: 280px; border-radius: 4px; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 7, 6, 0.78), transparent 55%); }
.tile-copy { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 1; }
.tile-copy span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fact { border: 1px solid #ffffff22; padding: 30px 26px; border-radius: 4px; }
.fact strong { display: block; font-family: var(--serif); font-size: 32px; color: var(--gold); margin-bottom: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-item { padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- menu page ---------- */
.menu-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.menu-layout .sticky { position: sticky; top: 32px; align-self: start; }
.menu-sec { margin-top: 52px; }
.menu-sec:first-child { margin-top: 0; }
.menu-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.menu-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0 6px; }
.menu-photos .gallery-item { height: 170px; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: baseline;
  width: 100%; padding: 17px 0; border: 0; border-top: 1px solid var(--line);
  background: none; text-align: start; cursor: default;
}
.menu-row b { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.menu-row small { color: var(--muted); font-size: 13px; }
.menu-row .price { color: var(--ember); font-weight: 600; white-space: nowrap; }
.menu-note { font-size: 14px; color: var(--muted); }

/* ---------- location / contact ---------- */
.loc-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; }
.map-frame { min-height: 480px; border: 0; width: 100%; background: #ddd; border-radius: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 14px 12px; border: 1px solid #c9b995; background: #fff; color: var(--ink); border-radius: 6px;
}
.hp { position: absolute; top: -10000px; left: 0; width: 1px; height: 1px; opacity: 0; }
.hours-table { width: min(420px, 100%); }
.hours-table div { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line); }
.ok { margin-top: 16px; padding: 16px; background: var(--teal); color: #fff; display: none; border-radius: 8px; }
.ok.show { display: block; }

/* ---------- footer ---------- */
.footer { background: #131009; color: #c7c9c2; padding: 72px 0 28px; font-size: 14px; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1fr; gap: 32px; }
.footer .brand { color: #fff; }
.motto { font-family: var(--serif); font-size: 22px; color: #fff; max-width: 18ch; line-height: 1.2; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.chip { border: 1px solid #ffffff22; padding: 8px 12px; font-size: 12px; border-radius: 999px; }
.legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 18px; border-top: 1px solid #ffffff18; font-size: 12px;
}
.agency { display: inline-flex; align-items: center; gap: 8px; opacity: 0.75; }
.agency img { width: 20px; height: 22px; }
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--gold-ink);
  display: grid; place-items: center; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.mobile-bar { display: none; }
.reveal { opacity: 0; transform: translateY(26px); transition: 0.75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- social strips ---------- */
.social-strips { overflow: hidden; }
.strip { margin: 28px 0 8px; }
.strip h3 { font-size: 22px; margin-bottom: 14px; }
.marquee { overflow: hidden; width: 100%; }
.marquee-track { display: flex; width: max-content; gap: 1rem; padding-inline: 1rem; animation: marquee-rtl 48s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ig-post {
  width: 280px; background: #000; color: #fafafa; border-radius: 10px; overflow: hidden; flex: 0 0 auto;
  text-decoration: none; font-family: var(--sans); font-size: 13px;
}
.ig-hd, .ig-actions, .ig-cap { padding: 10px 12px; display: flex; align-items: center; gap: 8px; }
.ig-hd .av { width: 32px; height: 32px; border-radius: 50%; padding: 2px; background: conic-gradient(#f9ce34, #ee2a7b, #6228d7, #f9ce34); }
.ig-hd .av span { display: block; width: 100%; height: 100%; border-radius: 50%; background: #222 center/cover; }
.ig-post img.shot { width: 100%; height: 280px; object-fit: cover; }
.ig-actions svg { width: 22px; height: 22px; }
.ig-actions .end { margin-inline-start: auto; }
.g-card, .ta-card {
  width: 320px; background: #fff; color: #202124; flex: 0 0 auto; padding: 16px 16px 18px; border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  text-decoration: none; font-family: var(--sans); font-size: 14px; line-height: 1.45;
}
.g-hd, .ta-hd { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.letter { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 600; }
.stars { color: #fbbc04; letter-spacing: 1px; margin: 6px 0; display: flex; gap: 1px; }
.ta-card .bubbles { color: #00aa6c; }

/* ---------- inner pages ---------- */
.page-hero { padding: 140px 0 48px; background: var(--deep); color: #fff; }
.page-hero p { color: #cfc4b4; }
.lightbox { border: 0; padding: 0; background: rgba(8,7,6,.88); max-width: none; width: 100%; height: 100%; }
.lightbox::backdrop { background: rgba(8,7,6,.88); }
.lightbox img { max-width: min(92vw, 1200px); max-height: 88vh; margin: 4vh auto; object-fit: contain; }
.lightbox button {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #fff6; background: #0008; color: #fff; cursor: pointer;
}

/* ---------- responsive ---------- */
@media (max-width: 1050px) {
  .cards-3, .facts, .foot-grid, .intro, .menu-layout, .loc-grid { grid-template-columns: 1fr; }
  .menu-layout .sticky { position: static; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .tile { height: 420px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-grid .wide { grid-column: auto; }
}
@media (max-width: 760px) {
  .nav, .header-end .btn { display: none; }
  .burger { display: grid; place-items: center; }
  .site-header { padding: 8px 14px; }
  .brand .word { font-size: 21px; }
  .brand img { width: 36px; height: 36px; }
  .hero { min-height: 100svh; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .trust-row { flex-direction: column; align-items: stretch; }
  .trust-card { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .menu-photos { grid-template-columns: 1fr 1fr; }
  .float-wa { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; inset: auto 0 0;
    height: 64px; background: var(--deep); color: #fff; z-index: 40;
  }
  .mobile-bar a { display: grid; place-items: center; text-decoration: none; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
  body { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .reveal, .card img, .gallery-item img { animation: none; transition: none; transform: none; opacity: 1; }
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- hero v3: split editorial ---------- */
.hero2 { background: var(--paper); color: var(--ink); padding: 0; overflow: hidden; display: flex; flex-direction: column; min-height: 100svh; }
.hero2-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 4vw, 60px);
  align-items: center; flex: 1; padding-top: 110px; padding-bottom: 34px;
}
.hero2-copy h1 { font-size: clamp(44px, 5.6vw, 86px); }
.hero2-copy .lead { color: var(--muted); }
.hero2-sub {
  font-family: var(--serif); font-size: clamp(21px, 2.3vw, 30px); line-height: 1.25;
  color: var(--muted); margin: 18px 0 0; max-width: 26ch; letter-spacing: -0.02em;
}
.hero2-sub em { font-style: italic; color: var(--accent); }
.hero2-ticker { border-top: 1px solid var(--line); padding: 13px 0; overflow: hidden; }
.tick {
  display: inline-flex; align-items: center; gap: 10px; padding-inline: 22px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.tick i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.hero2-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
.ph {
  margin: 0; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(30, 25, 18, 0.14);
  background: var(--foam);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-main { grid-column: 1 / -1; aspect-ratio: 16 / 9.2; }
.ph-a { aspect-ratio: 4 / 3.4; transform: rotate(-1.6deg); }
.ph-b { aspect-ratio: 4 / 3.4; transform: rotate(1.6deg); }

/* ---------- dish strip ---------- */
.dish-sec { background: var(--paper); }
.dish-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.dish-nav { display: flex; align-items: center; gap: 14px; }
.dish-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; font-size: 16px; transition: 0.2s;
}
.dish-arrow:hover { background: var(--gold); border-color: var(--gold); }
.dish-strip {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4.5vw 22px; scrollbar-width: thin;
}
.dish-card {
  flex: 0 0 262px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; text-decoration: none; color: var(--ink);
}
.dish-card img { width: 100%; height: 270px; object-fit: cover; transition: transform 0.7s ease; }
.dish-card:hover img { transform: scale(1.05); }
.dish-body { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 16px 16px 18px; }
.dish-body b { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.dish-price { color: var(--ember); font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ---------- social platform sections ---------- */
.sp-sec { padding: clamp(2.4rem, 5.5vw, 4.2rem) 0; }
.sp-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.sp-brand {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto;
  background: #fff; border: 1px solid var(--line);
}
.band-deep .sp-brand { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); }
.sp-titles h2 { font-size: clamp(30px, 3.6vw, 44px); }
.sp-sub { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.band-deep .sp-sub { color: #b9b0a2; }
.sp-link { margin-inline-start: auto; flex: 0 0 auto; }

/* ---------- cta with form ---------- */
.cta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.cta-grid form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }

@media (max-width: 1050px) {
  .hero2-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 110px; }
  .cta-grid { grid-template-columns: 1fr; }
  .sp-head { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .hero2-grid { padding-top: 100px; padding-bottom: 34px; }
  .hero2-copy h1 { font-size: clamp(50px, 14.5vw, 72px); }
  .hero2-photos { gap: 10px; }
  .dish-head { flex-direction: column; align-items: flex-start; }
  .dish-card { flex-basis: 228px; }
  .dish-card img { height: 230px; }
}
