/* ==========================================================
   BEIT WARD — Arabian Night Lounge
   Design System: One coordinated premium visual language
   ========================================================== */

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
:root {
  /* Palette */
  --night:       #100C0E;
  --night-soft:  #1B1418;
  --plum:        #351721;
  --plum-light:  #542332;
  --wine:        #742C3F;
  --amber:       #C9944E;
  --amber-light: #E4C28C;
  --ivory:       #F7EFE3;
  --sand:        #E8D8C4;
  --smoke:       #CFC1B4;
  --coffee:      #4A3025;
  --emerald:     #31483B;
  --text-dark:   #261D1A;
  --text-soft:   #675950;

  /* Fonts */
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --ff-ar-display: 'Aref Ruqaa', serif;
  --ff-ar-body:    'Cairo', system-ui, sans-serif;

  /* Spacing */
  --header-h:   72px;
  --content-max: 1200px;
  --safe-x:     clamp(20px, 5vw, 48px);

  /* Transitions */
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(0,.55,.45,1);
  --dur-micro:  180ms;
  --dur-med:    380ms;
  --dur-slow:   640ms;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(16,12,14,.18);
  --shadow-md:  0 12px 40px rgba(16,12,14,.28);
  --shadow-lg:  0 24px 64px rgba(16,12,14,.38);

  /* Header offset for anchor scroll */
  --header-offset: 88px;
  --anchor-gap: 16px;
}

/* ==========================================================
   2. RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + var(--anchor-gap));
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}
html[data-lang="ar"] body { font-family: var(--ff-ar-body); }
html[data-lang="ar"] .display,
html[data-lang="ar"] h1,
html[data-lang="ar"] h2,
html[data-lang="ar"] h3 { font-family: var(--ff-ar-display); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
section[id] { scroll-margin-top: calc(var(--header-offset) + var(--anchor-gap)); }
body.drawer-open { overflow: hidden; touch-action: none; }
body.modal-open { overflow: hidden; }

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.1;
  font-weight: 400;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-dark);
  margin-block: 10px 20px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
html[data-lang="ar"] .section-eyebrow {
  font-family: var(--ff-ar-body);
  letter-spacing: 0;
  flex-direction: row-reverse;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
html[data-lang="ar"] .section-eyebrow::before {
  display: none;
}
html[data-lang="ar"] .section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-title.center { text-align: center; }
.body-text {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 600px;
}
.body-text + .body-text { margin-top: 16px; }
.section-title + .body-text { margin-top: 0; }
.center { text-align: center; margin-inline: auto; }

/* Dark section overrides */
.section-title.ivory { color: var(--ivory); }
.section-eyebrow.amber { color: var(--amber); }
.body-text.muted { color: rgba(247,239,227,.65); }

/* ==========================================================
   4. SHARED LAYOUT
   ========================================================== */
.wrap {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--safe-x);
}
section { position: relative; padding-block: clamp(72px,10vw,120px); }

/* Scroll progress — physical left:0 so it grows correctly in both LTR and RTL */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--wine));
  z-index: 1000;
  transition: width .1s linear;
}

/* ==========================================================
   5. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background var(--dur-micro) var(--ease),
              color var(--dur-micro) var(--ease),
              transform var(--dur-micro) var(--ease),
              box-shadow var(--dur-micro) var(--ease);
  border: 1.5px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}
html[data-lang="ar"] .btn { letter-spacing: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.btn-primary {
  background: var(--wine);
  color: var(--ivory);
  box-shadow: 0 6px 20px rgba(116,44,63,.32);
}
.btn-primary:hover {
  background: var(--plum-light);
  box-shadow: 0 10px 28px rgba(116,44,63,.42);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247,239,227,.4);
}
.btn-ghost:hover {
  background: rgba(247,239,227,.1);
  border-color: rgba(247,239,227,.7);
}
.btn-amber {
  background: var(--amber);
  color: var(--night);
  box-shadow: 0 6px 20px rgba(201,148,78,.3);
}
.btn-amber:hover {
  background: var(--amber-light);
  box-shadow: 0 10px 28px rgba(201,148,78,.4);
}
.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--ivory);
}
.btn-full { width: 100%; }

/* ==========================================================
   6. HEADER
   ========================================================== */
header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background var(--dur-med) var(--ease),
              backdrop-filter var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              height var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
  border-block-end: 1px solid transparent;
}
.nav-inner {
  height: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--safe-x);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Scrolled state */
header.scrolled {
  background: rgba(27,20,24,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block-end-color: rgba(201,148,78,.25);
  box-shadow: 0 4px 24px rgba(16,12,14,.3);
  height: 62px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 14px;
  background: #030303;
  border: 1px solid rgba(201, 148, 78, 0.45);
  box-shadow:
    0 7px 24px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(201, 148, 78, 0.10);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand:hover .brand-logo-wrap {
  border-color: rgba(228, 194, 140, 0.8);
  box-shadow:
    0 9px 28px rgba(0, 0, 0, 0.40),
    0 0 22px rgba(201, 148, 78, 0.18);
  transform: translateY(-1px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-en {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ivory);
}
.brand-ar {
  font-family: var(--ff-ar-display);
  font-size: 13px;
  color: var(--amber-light);
}
html[data-lang="ar"] .brand-en { font-family: var(--ff-ar-display); font-size: 15px; }
html[data-lang="ar"] .brand-ar { font-family: var(--ff-display); font-size: 11px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,239,227,.78);
  padding: 8px 12px;
  border-radius: 4px;
  position: relative;
  transition: color var(--dur-micro) var(--ease);
  letter-spacing: .03em;
  white-space: nowrap;
}
html[data-lang="ar"] .nav-links a { letter-spacing: 0; font-size: 14px; }
.nav-links a:hover { color: var(--ivory); }
.nav-links a.active { color: var(--amber-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  inset-block-end: 4px;
  inset-inline: 12px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: inline-start center;
  transition: transform var(--dur-micro) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-reserve {
  background: var(--wine) !important;
  color: var(--ivory) !important;
  border-radius: 5px;
  padding: 9px 18px !important;
  font-size: 13px;
}
.nav-reserve:hover { background: var(--plum-light) !important; }
.nav-reserve::after { display: none !important; }

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(201,148,78,.4);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-light);
  transition: background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
  min-height: 34px;
}
.lang-toggle button.active {
  background: var(--amber);
  color: var(--night);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform var(--dur-micro) var(--ease),
              opacity var(--dur-micro) var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================
   7. MOBILE NAVIGATION
   ========================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 7, 9, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 260ms ease,
    visibility 0s linear 0s;
}
.mobile-drawer {
  position: fixed;
  inset-block: 0;
  right: 0;
  left: auto;
  z-index: 1001;
  width: min(420px, 92vw);
  max-width: 100%;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--night-soft);
  display: flex;
  flex-direction: column;

  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 340ms cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 340ms;

  will-change: transform;
}
.mobile-drawer.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;

  transition:
    transform 340ms cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0s;
}
/*
 * Do not move the drawer to the opposite physical side in RTL.
 * Only change the direction of its content.
 */
html[dir="rtl"] .mobile-drawer {
  right: 0;
  left: auto;
  direction: rtl;
  text-align: right;
}
html[dir="ltr"] .mobile-drawer {
  direction: ltr;
  text-align: left;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-block-end: 1px solid rgba(201,148,78,.15);
}
.drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ivory);
}

.drawer-brand img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 46px;
  border-radius: 10px;
  background: #030303;
  border: 1px solid rgba(201, 148, 78, 0.4);
}

html[data-lang="ar"] .drawer-brand { font-family: var(--ff-ar-display); }
.drawer-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--smoke);
  font-size: 26px;
  border-radius: 4px;
  transition: color var(--dur-micro) var(--ease);
}
.drawer-close:hover { color: var(--ivory); }
.drawer-close:focus-visible { outline: 2px solid var(--amber); }
.drawer-lang {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  border-block-end: 1px solid rgba(201,148,78,.1);
}
.drawer-lang button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--smoke);
  border: 1px solid rgba(201,148,78,.2);
  transition: all var(--dur-micro) var(--ease);
  min-height: 44px;
}
.drawer-lang button.active {
  background: var(--amber);
  color: var(--night);
  border-color: var(--amber);
}
.mobile-drawer a {
  padding: 16px 24px;
  color: rgba(247,239,227,.75);
  font-size: 16px;
  font-weight: 400;
  border-block-end: 1px solid rgba(247,239,227,.06);
  transition: color var(--dur-micro) var(--ease), padding-inline-start var(--dur-micro) var(--ease);
  display: block;
  min-height: 52px;
  display: flex;
  align-items: center;
}
html[data-lang="ar"] .mobile-drawer a { font-family: var(--ff-ar-body); font-size: 17px; }
.mobile-drawer a:hover { color: var(--ivory); padding-inline-start: 32px; }
.drawer-reserve {
  margin: 16px 24px 24px;
  background: var(--wine);
  color: var(--ivory) !important;
  justify-content: center;
  border-radius: 6px;
  padding-inline-start: 24px !important;
}
.drawer-reserve:hover { background: var(--plum-light) !important; padding-inline-start: 24px !important; }

/* ==========================================================
   8. HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 96svh;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroScale 20s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(16,12,14,.55) 0%,
      rgba(16,12,14,.2) 35%,
      rgba(53,23,33,.5) 70%,
      rgba(16,12,14,.92) 100%),
    radial-gradient(ellipse at 60% 60%, rgba(201,148,78,.08) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block-start: clamp(120px, 18vh, 160px);
  padding-block-end: clamp(48px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 96svh;
  min-height: 96vh;
  justify-content: flex-end;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 16px;
}
html[data-lang="ar"] .hero-eyebrow { letter-spacing: 0; font-family: var(--ff-ar-body); }
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
html[dir="rtl"] .hero-eyebrow::before { display: none; }
html[dir="rtl"] .hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
  order: -1;
}
.hero-title {
  font-size: clamp(38px, 7vw, 82px);
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-block-end: 12px;
  text-wrap: balance;
}
html[data-lang="ar"] .hero-title { font-family: var(--ff-ar-display); }
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--amber-light);
  margin-block-end: 16px;
}
html[data-lang="ar"] .hero-tagline { font-family: var(--ff-ar-display); font-style: normal; }
.hero-sub {
  font-size: clamp(14px, 1.4vw, 16.5px);
  line-height: 1.75;
  color: rgba(247,239,227,.75);
  max-width: 560px;
  margin-block-end: 28px;
}
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-block-end: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--amber-light);
}
html[data-lang="ar"] .hero-pillars { letter-spacing: 0; }
.hero-pillars span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pillar-dot { color: rgba(201,148,78,.5); letter-spacing: 0; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-facts {
  display: flex;
  align-items: stretch;
  background: rgba(16,12,14,.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,148,78,.18);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 26px;
  min-width: 130px;
}
.hero-fact strong {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
}
html[data-lang="ar"] .hero-fact strong { font-family: var(--ff-ar-display); }
.hero-fact span {
  font-size: 11.5px;
  color: rgba(247,239,227,.65);
  line-height: 1.4;
}
.hero-fact-div {
  width: 1px;
  background: rgba(201,148,78,.2);
  align-self: stretch;
}
.hero-scroll {
  position: absolute;
  inset-block-end: 30px;
  inset-inline-end: 32px;
  z-index: 3;
  color: rgba(247,239,227,.5);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247,239,227,.2);
  border-radius: 50%;
  transition: all var(--dur-micro) var(--ease);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.hero-scroll:hover { color: var(--amber); border-color: var(--amber); animation: none; }

/* Hero entrance */
.h-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.hero-eyebrow.h-anim  { transition-delay: 0.1s; }
.hero-title.h-anim    { transition-delay: 0.25s; }
.hero-tagline.h-anim  { transition-delay: 0.4s; }
.hero-sub.h-anim      { transition-delay: 0.5s; }
.hero-pillars.h-anim  { transition-delay: 0.6s; }
.hero-cta.h-anim      { transition-delay: 0.72s; }
.hero-facts.h-anim    { transition-delay: 0.85s; }
.hero-anim-ready .h-anim {
  opacity: 1;
  transform: translateY(0);
}

/* Hero official logo */
.hero-official-logo {
  width: clamp(118px, 12vw, 180px);
  margin-block-end: 1rem;
}

.hero-official-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter:
    drop-shadow(0 12px 30px rgba(0, 0, 0, 0.40))
    drop-shadow(0 0 18px rgba(201, 148, 78, 0.12));
}

/* ==========================================================
   9. EXPERIENCE SECTION
   ========================================================== */
.experience-section {
  background: var(--night-soft);
  padding-block: clamp(64px, 9vw, 100px);
}
.experience-section .section-title {
  color: var(--ivory);
  margin-block-end: 48px;
}
.experience-section .section-eyebrow.center {
  display: flex;
  justify-content: center;
  margin-block-end: 10px;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(201,148,78,.1);
  transition: border-color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.exp-card:hover { border-color: rgba(201,148,78,.5); }
.exp-card:hover .exp-img img { transform: scale(1.07); }
.exp-card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.exp-img {
  position: absolute;
  inset: 0;
}
.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(16,12,14,.15) 0%,
    rgba(16,12,14,.4)  40%,
    rgba(53,23,33,.85) 80%,
    rgba(16,12,14,.96) 100%);
  transition: background var(--dur-med) var(--ease);
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(180deg,
    rgba(16,12,14,.1)  0%,
    rgba(53,23,33,.5)  40%,
    rgba(84,35,50,.9)  80%,
    rgba(16,12,14,.98) 100%);
}
.exp-content {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 28px 26px;
  z-index: 1;
}
.exp-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(201,148,78,.15);
  border: 1px solid rgba(201,148,78,.3);
  border-radius: 8px;
  color: var(--amber);
  margin-block-end: 14px;
  transition: background var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease);
}
.exp-card:hover .exp-icon {
  background: rgba(201,148,78,.25);
  border-color: rgba(201,148,78,.6);
}
.exp-word {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-block-end: 8px;
  display: block;
}
html[data-lang="ar"] .exp-word { font-family: var(--ff-ar-display); }
.exp-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(247,239,227,.7);
  margin-block-end: 18px;
}
html[data-lang="ar"] .exp-desc { font-family: var(--ff-ar-body); }
.exp-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--amber);
  text-transform: uppercase;
  transition: gap var(--dur-micro) var(--ease);
}
html[data-lang="ar"] .exp-arrow { letter-spacing: 0; }
.exp-card:hover .exp-arrow { gap: 10px; }
.exp-amber-line {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform var(--dur-med) var(--ease);
}
.exp-card:hover .exp-amber-line { transform: scaleX(1); }

/* ==========================================================
   10. ABOUT / VENUE TOUR
   ========================================================== */
.about-section { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-images {
  position: relative;
  padding-block-start: 40px;
}
.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: -24px;
  width: 48%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  border: 4px solid var(--ivory);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.about-img-accent:hover img { transform: scale(1.04); }
html[dir="rtl"] .about-img-accent { inset-inline-end: auto; inset-inline-start: -24px; }
.about-content { padding-block-start: 16px; }
.about-content .body-text { max-width: 100%; }
.about-content .section-title { margin-block-start: 12px; }
.about-content .section-eyebrow { margin-block-end: 0; }

/* Venue tour */
.venue-tour {
  margin-block-start: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.venue-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  background: var(--sand);
  border-radius: 10px;
  border: 1px solid rgba(201,148,78,.15);
  transition: border-color var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.venue-card:hover { border-color: rgba(201,148,78,.4); transform: translateX(4px); }
html[dir="rtl"] .venue-card:hover { transform: translateX(-4px); }
.venue-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.venue-text b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-block-end: 3px;
}
.venue-text span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
html[data-lang="ar"] .venue-text b,
html[data-lang="ar"] .venue-text span { font-family: var(--ff-ar-body); }

/* ==========================================================
   11. MENU
   ========================================================== */
.menu-section { background: var(--plum); }
.menu-section .section-eyebrow { color: var(--amber); }
.menu-section .section-title { color: var(--ivory); }
.menu-lede { color: rgba(247,239,227,.6); max-width: 580px; }

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block-end: 2px;
  margin-block: 32px 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid rgba(247,239,227,.2);
  color: rgba(247,239,227,.65);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--dur-micro) var(--ease);
  scroll-snap-align: start;
  min-height: 40px;
  white-space: nowrap;
}
html[data-lang="ar"] .menu-tab { font-family: var(--ff-ar-body); font-size: 14px; }
.menu-tab:hover { color: var(--ivory); border-color: rgba(247,239,227,.4); }
.menu-tab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--night);
  font-weight: 700;
}
.menu-tab:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* Panel */
.menu-panel { display: none; }
.menu-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-block-start: 36px;
  animation: menuIn var(--dur-med) var(--ease) both;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-cat-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.menu-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.menu-cat-image:hover img { transform: scale(1.04); }
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block-start: 8px;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-block-end: 1px solid rgba(247,239,227,.08);
  transition: padding-inline-start var(--dur-micro) var(--ease);
}
.menu-item:hover { padding-inline-start: 8px; }
.menu-item:last-child { border-block-end: none; }
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.menu-item span:last-child {
  font-size: 15px;
  color: rgba(247,239,227,.85);
  line-height: 1.4;
}
html[data-lang="ar"] .menu-item span:last-child { font-family: var(--ff-ar-body); }

/* ==========================================================
   12. GALLERY / LIGHTBOX
   ========================================================== */
.gallery-section { background: var(--sand); }
.gallery-section .section-title { color: var(--text-dark); }
.gallery-lede { color: var(--text-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-block-start: 40px;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--coffee);
}
.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16,12,14,.72) 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 12px 14px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
html[data-lang="ar"] .gallery-grid figcaption { font-family: var(--ff-ar-body); }
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-grid figure:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* Expand icon */
.gallery-grid figure::before {
  content: '';
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: rgba(201,148,78,.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M9 2h3v3M5 12H2V9M13 1L8 6M1 13l5-5' stroke='%23100C0E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.gallery-grid figure:hover::before { opacity: 1; transform: scale(1); }

.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16,12,14,.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 16px 16px;
}
.lightbox.open {
  display: flex;
  animation: lbIn 280ms var(--ease) both;
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(860px, 80vw);
  animation: lbStageIn 360ms var(--ease) both;
}
@keyframes lbStageIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  object-fit: contain;
  display: block;
}
.lb-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  color: rgba(247,239,227,.7);
  font-size: 13.5px;
}
#lightboxCaption { flex: 1; }
.lb-counter {
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(247,239,227,.45);
  font-family: var(--ff-body);
}
.lb-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(247,239,227,.7);
  border: 1px solid rgba(247,239,227,.18);
  border-radius: 50%;
  transition: all var(--dur-micro) var(--ease);
}
.lb-close:hover { color: var(--ivory); border-color: var(--amber); }
.lb-close:focus-visible { outline: 2px solid var(--amber); }
.lb-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: rgba(247,239,227,.7);
  border: 1px solid rgba(247,239,227,.18);
  border-radius: 50%;
  transition: all var(--dur-micro) var(--ease);
}
.lb-nav:hover { color: var(--ivory); background: rgba(201,148,78,.2); border-color: var(--amber); }
.lb-nav:focus-visible { outline: 2px solid var(--amber); }

/* Touch-device captions always visible */
@media (hover: none), (pointer: coarse) {
  .gallery-grid figure::after { opacity: 1; }
  .gallery-grid figcaption { opacity: 1; transform: translateY(0); }
  .gallery-grid figure::before { display: none; }
}

/* ==========================================================
   13. SHISHA SECTION
   ========================================================== */
.shisha-section {
  background: var(--night-soft);
  overflow: hidden;
}
.shisha-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.smoke-wisp {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(247,239,227,.04) 0%,
    transparent 70%);
  filter: blur(24px);
  animation: smokeRise 14s ease-in-out infinite;
}
.smoke-wisp:nth-child(1) { left: 15%; animation-duration: 16s; animation-delay: 0s; }
.smoke-wisp:nth-child(2) { left: 45%; animation-duration: 12s; animation-delay: 4s; width: 140px; }
.smoke-wisp:nth-child(3) { left: 70%; animation-duration: 18s; animation-delay: 8s; width: 220px; }
@keyframes smokeRise {
  0%   { transform: translateY(0) scaleX(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .4; }
  100% { transform: translateY(-80vh) scaleX(1.8); opacity: 0; }
}
.shisha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.shisha-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.shisha-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.shisha-media:hover img { transform: scale(1.03); }
.shisha-img-glow {
  position: absolute;
  inset-inline-end: -1px;
  inset-block: 10%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--amber), transparent);
  opacity: .6;
}
html[dir="rtl"] .shisha-img-glow { inset-inline-end: auto; inset-inline-start: -1px; }
.shisha-content { padding-block: 24px; }
.shisha-content .section-title { margin-block: 12px 20px; }
.shisha-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-block: 28px;
}
.shisha-features .f {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,239,227,.75);
}
.shisha-features .f .ico {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: rgba(201,148,78,.12);
  border-radius: 5px;
  color: var(--amber);
  font-size: 13px;
  flex-shrink: 0;
}
html[data-lang="ar"] .shisha-features .f { font-family: var(--ff-ar-body); }
.flavor-section { margin-block: 0 28px; }
.flavor-section .section-eyebrow { margin-block-end: 14px; }
.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flavor-tag {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,148,78,.3);
  background: rgba(201,148,78,.08);
  color: rgba(247,239,227,.75);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--dur-micro) var(--ease);
}
.flavor-tag:hover { border-color: var(--amber); color: var(--amber-light); }
html[data-lang="ar"] .flavor-tag { font-family: var(--ff-ar-body); }

/* ==========================================================
   14. REVIEWS
   ========================================================== */
.reviews-section { background: var(--ivory); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-block: 40px 0;
}
.review-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid rgba(201,148,78,.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.review-card:hover {
  border-color: rgba(201,148,78,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-quote {
  color: var(--amber);
  font-family: var(--ff-display);
  font-size: 36px;
  line-height: 1;
  opacity: .4;
}
.stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  flex: 1;
}
html[data-lang="ar"] .review-card p { font-family: var(--ff-ar-body); }
.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block-start: 12px;
  border-block-start: 1px solid rgba(201,148,78,.15);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 15px;
  flex-shrink: 0;
}
.review-who b { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.review-who span { display: block; font-size: 12px; color: var(--text-soft); }
html[data-lang="ar"] .review-who b,
html[data-lang="ar"] .review-who span { font-family: var(--ff-ar-body); }
.reviews-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-block-start: 40px;
}

/* ==========================================================
   14b. PHONE NUMBER RTL ISOLATION
   ========================================================== */
.phone-link,
.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.phone-number {
  display: inline-block;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

html[dir="rtl"] .phone-link,
html[dir="rtl"] .phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

input[type="tel"] {
  direction: ltr;
  text-align: left;
  unicode-bidi: isolate;
}

/* ==========================================================
   15. RESERVATION & CONTACT
   ========================================================== */
.reservation-section {
  background: var(--sand);
}
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.res-info .section-title { margin-block: 12px 16px; }
.res-info .body-text { margin-block-end: 28px; max-width: 100%; }
.res-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block-end: 28px;
}
.res-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-soft);
}
.res-detail-row > svg { flex-shrink: 0; margin-block-start: 2px; }
.res-detail-row strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-block-end: 2px;
}
.res-detail-row a { color: var(--wine); }
.res-detail-row a:hover { color: var(--plum-light); }
.res-venue-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-sm);
}
.res-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-section { background: var(--night); }
.contact-section .section-eyebrow { color: var(--amber); }
.contact-section .section-title { color: var(--ivory); }
.contact-section .body-text { color: rgba(247,239,227,.65); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-block: 28px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
}
.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(201,148,78,.1);
  border: 1px solid rgba(201,148,78,.2);
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-row strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(247,239,227,.5);
  margin-block-end: 3px;
}
html[data-lang="ar"] .contact-row strong { text-transform: none; letter-spacing: 0; font-family: var(--ff-ar-body); }
.contact-row span,
.contact-row a {
  color: rgba(247,239,227,.8);
  font-size: 14px;
}
html[data-lang="ar"] .contact-row span,
html[data-lang="ar"] .contact-row a { font-family: var(--ff-ar-body); }
.contact-row a:hover { color: var(--amber-light); }
.social-row {
  display: flex;
  gap: 10px;
  margin-block: 8px 24px;
}
.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(247,239,227,.15);
  color: rgba(247,239,227,.6);
  transition: all var(--dur-micro) var(--ease);
}
.social-row a:hover { background: var(--amber); border-color: var(--amber); color: var(--night); }
.social-row a:focus-visible { outline: 2px solid var(--amber); }
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-container iframe { display: block; }

/* Shared form card */
.form-card {
  background: var(--ivory);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-block-end: 16px;
}
.field:last-of-type { margin-block-end: 20px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wine);
}
html[data-lang="ar"] .field label { text-transform: none; letter-spacing: 0; font-family: var(--ff-ar-body); }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid rgba(74,48,37,.2);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
  min-height: 48px;
  width: 100%;
}
html[data-lang="ar"] .field input,
html[data-lang="ar"] .field select,
html[data-lang="ar"] .field textarea { font-family: var(--ff-ar-body); }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,148,78,.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  pointer-events: none;
}
.toast {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  margin-block-start: 12px;
}
.toast.show { display: block; }
.toast.success {
  background: rgba(49,72,59,.12);
  color: var(--emerald);
  border: 1px solid rgba(49,72,59,.2);
}
.toast.error {
  background: rgba(180,32,32,.08);
  color: #b42020;
  border: 1px solid rgba(180,32,32,.2);
}
.toast.loading {
  background: rgba(201,148,78,.1);
  color: var(--amber);
  border: 1px solid rgba(201,148,78,.25);
}
.btn:disabled,
.btn[aria-busy="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.form-note {
  font-size: 12.5px;
  color: var(--text-soft);
  margin-block-start: 14px;
  line-height: 1.6;
}
html[data-lang="ar"] .form-note { font-family: var(--ff-ar-body); }

/* ==========================================================
   16. FOOTER
   ========================================================== */
.site-footer {
  background: var(--night);
  border-block-start: 2px solid rgba(201,148,78,.2);
  padding-block: 60px 24px;
}
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-end: 16px;
}

.footer-logo-mark {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 13px;
  background: #030303;
  border: 1px solid rgba(201, 148, 78, 0.42);
}

.footer-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-name-en {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.footer-name-ar {
  font-family: var(--ff-ar-display);
  font-size: 14px;
  color: var(--amber-light);
  line-height: 1.3;
}
html[data-lang="ar"] .footer-name-en { font-family: var(--ff-ar-display); }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(247,239,227,.45);
  max-width: 260px;
}
html[data-lang="ar"] .footer-brand p { font-family: var(--ff-ar-body); }
.footer-col h3 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-block-end: 16px;
}
html[data-lang="ar"] .footer-col h3 { font-family: var(--ff-ar-body); letter-spacing: 0; text-transform: none; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 13.5px; color: rgba(247,239,227,.55); }
html[data-lang="ar"] .footer-col ul li { font-family: var(--ff-ar-body); }
.footer-col ul a { transition: color var(--dur-micro) var(--ease); }
.footer-col ul a:hover { color: var(--amber-light); }
.footer-soon { opacity: .4; font-style: italic; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(247,239,227,.08);
  font-size: 12px;
  color: rgba(247,239,227,.3);
}
html[data-lang="ar"] .footer-bottom { font-family: var(--ff-ar-body); }

/* ==========================================================
   17. UTILITIES & REVEAL ANIMATION
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 16px;
  background: var(--night);
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-ready .page-loader { opacity: 0; visibility: hidden; }
.loader-name {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--amber-light);
  text-align: center;
}
.loader-rose {
  position: relative;
  width: 60px;
  height: 60px;
  margin: auto;
  animation: loaderSpin 2.4s linear infinite;
}
.loader-rose span {
  position: absolute;
  left: 26px;
  top: 5px;
  width: 8px;
  height: 22px;
  border-radius: 80% 80% 45% 45%;
  background: linear-gradient(var(--amber-light), var(--amber));
  transform-origin: 4px 25px;
}
.loader-rose span:nth-child(2) { transform: rotate(60deg); }
.loader-rose span:nth-child(3) { transform: rotate(120deg); }
.loader-rose span:nth-child(4) { transform: rotate(180deg); }
.loader-rose span:nth-child(5) { transform: rotate(240deg); }
.loader-rose span:nth-child(6) { transform: rotate(300deg); }
@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 400;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* ==========================================================
   18. RTL SPECIFICS
   ========================================================== */
html[dir="rtl"] .about-img-accent { inset-inline-end: auto; inset-inline-start: -24px; }
html[dir="rtl"] .shisha-grid { direction: rtl; }
html[dir="rtl"] .res-detail-row svg { flex-shrink: 0; }

/* ==========================================================
   19. RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 1100px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 9px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-logo-wrap {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

@media (max-width: 920px) {
  :root { --header-h: 66px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images {
    order: -1;
    max-width: 500px;
    margin-inline: auto;
  }
  .about-img-accent { inset-inline-end: -12px; }
  html[dir="rtl"] .about-img-accent { inset-inline-start: -12px; }
  .exp-grid { grid-template-columns: 1fr; gap: 14px; }
  .exp-card { aspect-ratio: 16/9; }
  .shisha-grid { grid-template-columns: 1fr; }
  .shisha-media { max-width: 500px; margin-inline: auto; aspect-ratio: 4/3; }
  .res-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b { grid-column: span 2; }
  .review-grid { grid-template-columns: 1fr; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .menu-cat-image { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-facts { width: 100%; }
  .hero-fact { min-width: 0; flex: 1; padding: 14px 16px; }
}

@media (max-width: 700px) {
  :root {
    --header-h: 68px;
    --safe-x: 14px;
  }

  header,
  header.scrolled {
    height: var(--header-h);
  }

  .nav-inner {
    width: 100%;
    max-width: none;
    height: 100%;

    display: grid;
    grid-template-columns: 44px minmax(124px, 1fr) 48px;
    grid-template-areas: "menu language logo";
    align-items: center;
    gap: 10px;

    padding-inline: 12px;

    direction: ltr;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    display: contents;
  }

  .burger {
    grid-area: menu;
    display: flex;
    justify-self: start;

    width: 44px;
    height: 44px;
    padding: 9px;

    direction: ltr;
  }

  .burger span {
    width: 100%;
  }

  .lang-toggle {
    grid-area: language;
    justify-self: center;
    direction: ltr;

    width: min(100%, 150px);
    min-width: 124px;
  }

  .lang-toggle button {
    flex: 1;
    padding: 7px 10px;
    min-height: 38px;
  }

  .brand {
    grid-area: logo;
    justify-self: end;
    width: 48px;
    height: 48px;
    gap: 0;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 11px;
  }

  .brand-text {
    display: none;
  }

  html[dir="rtl"] .nav-inner,
  html[dir="ltr"] .nav-inner {
    direction: ltr;
  }

  html[dir="rtl"] .lang-toggle {
    direction: ltr;
  }

  /* Hero */
  .hero {
    min-height: auto;
    display: block;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    animation: none;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(16, 12, 14, 0.62) 0%,
        rgba(16, 12, 14, 0.28) 24%,
        rgba(53, 23, 33, 0.58) 58%,
        rgba(16, 12, 14, 0.96) 100%
      );
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;

    padding-block-start: calc(var(--header-h) + 28px);
    padding-block-end: 28px;

    gap: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-eyebrow {
    margin-block-end: 10px;
    font-size: 11px;
  }

  .hero-title {
    max-width: 100%;
    margin-block-end: 8px;

    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.12;
    text-wrap: balance;
  }

  html[data-lang="ar"] .hero-title {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.25;
  }

  .hero-tagline {
    margin-block-end: 10px;
    font-size: clamp(16px, 4.5vw, 19px);
    line-height: 1.45;
  }

  .hero-sub {
    max-width: 100%;
    margin-block-end: 18px;

    font-size: 14px;
    line-height: 1.65;
  }

  .hero-pillars {
    justify-content: flex-start;
    gap: 8px 11px;

    margin-block-end: 20px;

    font-size: 10px;
    letter-spacing: 0.12em;
  }

  html[dir="rtl"] .hero-pillars {
    justify-content: flex-start;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 10px;

    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero-facts {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-radius: 8px;
  }

  .hero-fact {
    min-width: 0;
    padding: 12px 7px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    text-align: center;
  }

  .hero-fact strong {
    font-size: 18px;
  }

  .hero-fact span {
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-fact-div {
    display: none;
  }

  .hero-fact + .hero-fact {
    border-inline-start: 1px solid rgba(201, 148, 78, 0.18);
  }

  .hero-scroll {
    display: none;
  }

  .hero-official-logo {
    display: none;
  }
}

@media (max-width: 560px) {
  :root { --safe-x: 18px; }
  .exp-card { aspect-ratio: 4/3; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .g-a, .g-b { grid-column: auto; grid-row: auto; }
  .lightbox { padding: 52px 8px 8px; gap: 10px; }
  .lb-stage { max-width: 100%; }
  .lb-stage img { max-height: 68vh; }
  .lb-nav { width: 42px; height: 42px; flex-shrink: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shisha-features { grid-template-columns: 1fr; }
  .review-grid { gap: 14px; }
  .whatsapp-float { inset-block-end: 16px; inset-inline-end: 16px; width: 50px; height: 50px; }
}

@media (max-width: 360px) {
  .nav-inner {
    grid-template-columns: 42px minmax(112px, 1fr) 44px;
    gap: 7px;
    padding-inline: 9px;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .brand,
  .brand-logo-wrap {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .lang-toggle {
    min-width: 112px;
    max-width: 132px;
  }

  .lang-toggle button {
    padding-inline: 7px;
    font-size: 11.5px;
  }

  .hero-inner {
    padding-block-start: calc(var(--header-h) + 20px);
    padding-block-end: 22px;
  }

  .hero-title {
    font-size: 32px;
  }

  html[data-lang="ar"] .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 13.5px;
  }

  .hero-pillars {
    gap: 7px;
  }

  .hero-cta {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-title { font-size: 26px; }
  .lb-nav { width: 36px; height: 36px; }
  .lb-close { inset-block-start: 12px; inset-inline-end: 12px; }
}

/* ==========================================================
   20. REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .h-anim { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .smoke-wisp { animation: none; }
  .hero-media img { animation: none; }
  .hero-scroll { animation: none; }
  .mobile-drawer,
  .drawer-backdrop {
    transition-duration: 1ms;
  }
  .brand-logo-wrap {
    transition: none;
  }
}
