/* ============================================================
   ALI BABA LOUNGE — design tokens
   Ground: deep brown-black (from logo) · Accent: logo gold
   Titles: brush script (Myata ref) · Display: high-contrast serif
   ============================================================ */
:root {
  /* color */
  --bg: #14100c;
  --bg-2: #1d1710;
  --surface: #241b12;
  --gold: #c9a84c;
  --gold-soft: #e0c37a;
  --cream: #f3ead9;
  --muted: #b3a48c;
  --line: rgba(201, 168, 76, 0.25);

  /* type */
  --font-script: "Kaushan Script", cursive;
  --font-display: "Playfair Display", serif;
  --font-body: "Jost", sans-serif;

  /* spacing (8px grid) */
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-6: 48px; --s-8: 64px; --s-12: 96px;

  --radius: 16px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-2) var(--s-3);
  background: linear-gradient(rgba(20, 16, 12, 0.9), rgba(20, 16, 12, 0));
  transition: background 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(20, 16, 12, 0.95);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav__brand span { color: var(--gold); }

.nav__links {
  display: none;
  gap: var(--s-3);
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links a { opacity: 0.85; transition: color 0.3s, opacity 0.3s; }
.nav__links a:hover, .nav__links a:focus-visible { color: var(--gold); opacity: 1; }

.nav__actions { display: flex; gap: 8px; align-items: center; }

/* language switcher (dropdown per reference) */
.lang { position: relative; }
.lang-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  background: rgba(36, 27, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.lang-chip:hover, .lang.open .lang-chip { border-color: var(--gold); }
.lang-chip__flag { font-size: 17px; line-height: 1; }
.lang-chip__caret { font-size: 11px; color: var(--gold); transition: transform 0.3s var(--ease); }
.lang.open .lang-chip__caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  list-style: none;
  padding: 8px;
  background: rgba(29, 23, 16, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 120;
}
.lang.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.lang-menu li:hover { background: rgba(201, 168, 76, 0.1); }
.lang-menu li.active { background: rgba(139, 30, 30, 0.35); }
.lang-menu .flag { font-size: 20px; line-height: 1; }
.lang-menu .name { flex: 1; }
.lang-menu .check { color: var(--gold); font-weight: 700; opacity: 0; }
.lang-menu li.active .check { opacity: 1; }

/* burger (mobile) */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav { padding: var(--s-2) var(--s-6); }
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  background: rgba(20, 16, 12, 0.98);
  list-style: none;
  font-size: 22px;
  font-family: var(--font-display);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 8px 16px; display: block; }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 16, 12, 0.55), rgba(20, 16, 12, 0.35) 50%, var(--bg));
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: var(--s-12) var(--s-3) var(--s-8);
}
.hero__logo {
  width: 132px;
  margin: 0 auto var(--s-3);
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.25);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 72px);
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.hero__title span { color: var(--gold); }
.hero__sub {
  margin-top: var(--s-1);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero__lede {
  margin-top: var(--s-3);
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--cream);
  text-wrap: balance;
}
.hero__scroll {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scroll svg {
  width: 22px;
  height: 22px;
  animation: scrollDrift 2.4s ease-out infinite;
}
@keyframes scrollDrift {
  0% { transform: translateY(0); opacity: 0.9; }
  60% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ---------- sections ---------- */
.section {
  padding: var(--s-12) var(--s-3);
  max-width: 1100px;
  margin: 0 auto;
}
.section--full { max-width: none; padding-left: 0; padding-right: 0; }

/* Myata-style script title (miata word writing.png) */
.section__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 64px);
  color: var(--gold);
  text-align: center;
  margin-bottom: var(--s-6);
}

.stub {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: var(--s-6) var(--s-3);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.06em;
}

/* reveal: fade + 8px up, 600ms ease-out (Huashu: motion as breath) */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- about (logo background) ---------- */
.about {
  position: relative;
  padding: var(--s-12) var(--s-3);
  background: url("../assets/brand/logo.jpg") center / cover no-repeat fixed;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.82);
}
.about__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2.6vw, 23px);
  line-height: 1.9;
  color: var(--cream);
}

/* ---------- galleries ---------- */
.gallery {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .gallery--3 { grid-template-columns: repeat(3, 1fr); }
  .gallery--4 { grid-template-columns: repeat(4, 1fr); }
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tile:hover img { transform: scale(1.05); }

/* ---------- advantages ---------- */
.advantages {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 620px) {
  .advantages--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .advantages { grid-template-columns: repeat(3, 1fr); }
  .advantages--4 { grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); }
}
.amenities__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--s-4);
  color: var(--cream);
  text-align: center;
}
.amenities__pay svg { width: 26px; height: 26px; color: var(--gold); flex: 0 0 auto; }
.advantage {
  padding: var(--s-4) var(--s-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.advantage__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.advantage h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: var(--s-1);
}
.advantage p { color: var(--muted); font-size: 15px; }

/* ---------- why choose (Whychooseus.jpg style, gold instead of pink) ---------- */
.why {
  padding: var(--s-12) var(--s-3);
  text-align: center;
  background: linear-gradient(160deg, var(--bg) 0%, #241505 55%, var(--bg) 100%);
}
.why__statement {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(38px, 7.5vw, 84px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin: var(--s-4) 0;
}
.why__statement span { color: var(--gold); }
.why__sub {
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* ---------- events ---------- */
.events__note {
  max-width: 620px;
  margin: 0 auto var(--s-4);
  text-align: center;
  color: var(--cream);
}

/* ---------- hours + map ---------- */
.hours { text-align: center; margin-bottom: var(--s-4); }
.hours__badge {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.06em;
}
.hours__badge strong { color: var(--gold); font-weight: 700; }
.hours__line { color: var(--muted); margin: var(--s-1) 0 var(--s-3); }
.hours__address {
  font-style: normal;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: var(--s-3);
}
.hours__directions {
  display: inline-block;
  min-height: 44px;
  padding: 10px 32px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  letter-spacing: 0.08em;
  transition: background 0.3s, color 0.3s;
}
.hours__directions:hover { background: var(--gold); color: #241b12; }
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.2);
}

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: var(--s-3) 0;
  font-family: var(--font-display);
  font-size: 18px;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 var(--s-3); color: var(--muted); }

/* ---------- menu ---------- */
.menu-tabs {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  gap: var(--s-1);
  justify-content: flex-start;
  overflow-x: auto;
  padding: var(--s-1) 0;
  margin-bottom: var(--s-4);
  background: var(--bg);
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 24px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.menu-tab:hover { color: var(--cream); border-color: var(--gold); }
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #241b12;
  font-weight: 500;
}

/* all categories stacked; tabs stick under the nav and scroll to each */
.menu-panel { display: block; scroll-margin-top: 150px; }
.menu-cat {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 42px);
  color: var(--gold);
  margin: var(--s-8) 0 var(--s-3);
}
#panel-hookah .menu-cat { margin-top: 0; }

.menu-sub {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--gold-soft);
  margin: var(--s-6) 0 var(--s-3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s-2);
}
.menu-grid--types { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.6s var(--ease), border-color 0.6s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); }
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--s-2);
  text-align: center;
}
.card__name { font-size: 15px; letter-spacing: 0.04em; }
.card__price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 18px;
}
.card__price--tbd {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.food-note {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--s-6) var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.food-note__title {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: var(--s-2);
}

/* ---------- lightbox (zoom in / zoom out) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(20, 16, 12, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: var(--radius);
  cursor: zoom-in;
  transform: scale(1);
  transition: transform 0.45s var(--ease);
}
.lightbox__img.zoomed { transform: scale(1.9); cursor: zoom-out; }
.lightbox__close {
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  z-index: 1;
  width: 44px;
  height: 44px;
  background: rgba(36, 27, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__hint {
  position: absolute;
  bottom: var(--s-3);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---------- contact ---------- */
#contact { text-align: center; }
.contact__lead {
  max-width: 540px;
  margin: 0 auto var(--s-4);
  color: var(--cream);
  font-size: clamp(17px, 2.4vw, 20px);
  text-wrap: balance;
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--cream);
  font-size: 17px;
  letter-spacing: 0.04em;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.contact__btn:hover {
  background: var(--gold);
  color: #241b12;
  transform: translateY(-2px);
}
.contact__handle {
  margin-top: var(--s-3);
  color: var(--gold-soft);
  letter-spacing: 0.08em;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: var(--s-8) var(--s-3) var(--s-6);
  color: var(--muted);
  font-size: 14px;
}
.footer__cols {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 720px) {
  .footer__cols {
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: var(--s-4);
    text-align: left;
  }
}
.footer__logo {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.footer__tagline {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}
.footer__blurb { margin-top: var(--s-2); font-size: 13px; line-height: 1.6; max-width: 34ch; }
.footer__cols[dir] .footer__blurb, .footer__col .footer__blurb { margin-inline: auto; }
@media (min-width: 720px) { .footer__blurb { margin-inline: 0; } }
.footer__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-2);
}
.footer__links { list-style: none; display: grid; gap: 10px; }
.footer__links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--gold); }
.footer__hours { font-size: 14px; }
.footer__hours strong { color: var(--gold); }
.footer__addr { font-style: normal; font-size: 13px; line-height: 1.6; margin-top: 8px; color: var(--muted); }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: var(--s-2);
  color: var(--cream);
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.footer__social:hover { color: var(--gold); }
.insta-icon { width: 26px; height: 26px; }

/* Dima Maghreb — Morocco World Cup support banner */
.cup-banner {
  margin: var(--s-8) auto var(--s-6);
  max-width: 1080px;
  padding: 16px var(--s-3);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #c1272d 0%, #c1272d 50%, #006233 50%, #006233 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 2.6vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.cup-banner__dima { color: #fff; }
.cup-banner__dot {
  color: #ffd75e;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 0;
  opacity: 1;
  transform: translateY(0.06em);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
  text-align: center;
}
.footer__copy { font-size: 13px; }
.footer__credit {
  margin-top: var(--s-1);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer__legal { margin-top: var(--s-2); font-size: 12px; opacity: 0.85; }
.footer__legal a { color: var(--muted); transition: color 0.25s; }
.footer__legal a:hover { color: var(--gold); }
.footer__sep { margin: 0 6px; opacity: 0.5; }

/* ---------- cookie consent (reference style, adapted to gold) ---------- */
.cookie {
  position: fixed;
  left: var(--s-2);
  right: var(--s-2);
  bottom: var(--s-2);
  z-index: 180;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  max-width: 1040px;
  margin: 0 auto;
  padding: var(--s-3) var(--s-4);
  background: rgba(29, 23, 16, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cookie.show { opacity: 1; transform: none; }
.cookie__text { flex: 1; font-size: 14px; line-height: 1.6; color: var(--cream); }
.cookie__link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie__link:hover { color: var(--gold-soft); }
.cookie__ok {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 12px 40px;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: #241b12;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie__ok:hover { background: var(--gold-soft); }
@media (max-width: 640px) {
  .cookie { flex-direction: column; align-items: stretch; text-align: center; padding: var(--s-3); }
  .cookie__ok { width: 100%; }
}

/* ---------- Arabic (RTL) + Cyrillic display fallbacks ---------- */
/* Kaushan Script has no Arabic/Cyrillic glyphs — swap to script-safe faces */
html[dir="rtl"] body { font-family: "Cairo", var(--font-body); }
html[dir="rtl"] .section__title,
html[dir="rtl"] .menu-sub,
html[dir="rtl"] .menu-cat,
html[dir="rtl"] .food-note__title {
  font-family: "Cairo", var(--font-display);
  font-weight: 700;
}
html[dir="rtl"] .about__text,
html[dir="rtl"] .why__statement,
html[dir="rtl"] .hours__badge,
html[dir="rtl"] .faq__item summary,
html[dir="rtl"] .cup-banner,
html[dir="rtl"] .footer__head,
html[dir="rtl"] .footer__logo { font-family: "Cairo", var(--font-display); }
html[dir="rtl"] .footer__cols { text-align: right; }
@media (max-width: 719px) { html[dir="rtl"] .footer__cols { text-align: center; } }
html[dir="rtl"] .cup-banner {
  background: linear-gradient(90deg, #006233 0%, #006233 50%, #c1272d 50%, #c1272d 100%);
}
/* the +/− marker sits on the correct side automatically via flexbox in RTL */
html[dir="rtl"] .menu-tabs { justify-content: flex-start; }

/* Russian: Playfair Display carries Cyrillic; keep titles elegant */
html[lang="ru"] .section__title,
html[lang="ru"] .menu-sub,
html[lang="ru"] .menu-cat,
html[lang="ru"] .food-note__title {
  font-family: var(--font-display);
  font-weight: 700;
}
