/* ══════════════════════════════════════════════════
   OSAJ FAST FOOD – Modern CSS  (c) 2026
   ══════════════════════════════════════════════════ */

/* ── 0. CUSTOM PROPERTIES ─────────────────────── */
:root {
  /* Palette */
  --c-primary:   #C4522A;
  --c-primary-d: #a8431f;
  --c-accent:    #F5A623;
  --c-dark:      #18110A;
  --c-dark2:     #241805;
  --c-light:     #FFF8F0;
  --c-muted:     #6B5744;
  --c-border:    rgba(196,82,42,.18);
  --c-strip-bg:  #1E1208;

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;
  --f-arabic:'Scheherazade New', 'Traditional Arabic', serif;

  /* Sizing */
  --r-sm: .5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2.5rem;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .28s;

  /* Container */
  --container: 1200px;
  --gutter: 1.5rem;

  /* Z */
  --z-header: 100;
  --z-fab:     90;
  --z-overlay: 10;
}

/* ── 1. RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* RTL support when Arabic is active */
html[lang="ar"] {
  direction: rtl;
  --f-sans: var(--f-arabic);
}
html[lang="ar"] .hero__title em,
html[lang="ar"] .h2,
html[lang="ar"] .logo__text {
  font-family: var(--f-arabic);
  font-style: normal;
}

body {
  font-family: var(--f-sans);
  background: var(--c-light);
  color: var(--c-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── 2. UTILITY ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 5rem; }

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .75rem;
}

.h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.sec-sub {
  margin-top: .75rem;
  color: var(--c-muted);
  font-size: .95rem;
}

/* ── 3. BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 3rem;
  font-size: .92rem;
  font-weight: 600;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,82,42,.35);
}
.btn-primary:hover { background: var(--c-primary-d); box-shadow: 0 6px 24px rgba(196,82,42,.45); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-ghost-dark {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid var(--c-border);
}
.btn-ghost-dark:hover { background: var(--c-border); }

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.6rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  transition: opacity var(--dur);
}
.btn-ig:hover { opacity: .9; transform: translateY(-2px); }

/* ── 4. HEADER ────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  padding-block: .9rem;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.scrolled {
  background: rgba(24,17,10,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-primary);
}
.logo__text {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

/* Nav */
.nav { margin-inline-start: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; inset-inline-start: 0;
  width: 0; height: 2px;
  background: var(--c-primary);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--c-accent); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-inline-start: 1.5rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2rem;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.15);
}
.lang-btn {
  padding: .28rem .7rem;
  border-radius: 2rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: background var(--dur), color var(--dur);
  min-width: 34px;
}
.lang-btn.active {
  background: var(--c-primary);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* Call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 3rem;
  background: var(--c-primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--dur), transform var(--dur);
}
.btn-call:hover { background: var(--c-primary-d); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 5. HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,10,4,.72) 0%,
    rgba(18,10,4,.45) 60%,
    rgba(18,10,4,.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: start;
  animation: heroFadeUp .8s var(--ease) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.1rem;
}
.star-row { color: var(--c-accent); letter-spacing: .04em; }

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero__title span { display: block; }
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--c-accent);
}

.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 11px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 5px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  animation: scrollBob 1.6s infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%      { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ── 6. STRIP ─────────────────────────────────── */
.strip {
  background: var(--c-strip-bg);
  padding-block: 2.2rem;
}
.strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding-inline: 3rem;
}
.strip__item b {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}
.strip__item span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-align: center;
}
.strip__sep {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,.15);
}

/* ── 7. ABOUT ─────────────────────────────────── */
.about { background: var(--c-light); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visuals { position: relative; }
.about__fig-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.about__fig-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.about__fig-main:hover img { transform: scale(1.03); }

.about__fig-accent {
  position: absolute;
  bottom: -2rem;
  inset-inline-end: -2rem;
  width: 200px;
  border-radius: var(--r-md);
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.about__fig-accent img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 3px solid #fff;
}
.fig-badge {
  position: absolute;
  bottom: -1rem;
  inset-inline-start: -1rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-sm);
  padding: .45rem .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(196,82,42,.4);
}

.about__text { padding-inline-start: 1rem; }
.about__text .h2 { margin-bottom: 1.25rem; }
.about__text p {
  color: var(--c-muted);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1.8rem;
}
.about__pillars li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about__pillars strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .15rem;
}
.about__pillars small {
  font-size: .82rem;
  color: var(--c-muted);
}

/* ── 8. MENU ──────────────────────────────────── */
.menu-sec { background: #F9F1E7; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card--hero {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

.menu-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}

.mc-img {
  position: relative;
  overflow: hidden;
}
.mc-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.menu-card--hero .mc-img img { height: 100%; min-height: 320px; }
.menu-card:hover .mc-img img { transform: scale(1.04); }

.mc-badge {
  position: absolute;
  top: .9rem;
  inset-inline-start: .9rem;
  background: var(--c-accent);
  color: var(--c-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 2rem;
  letter-spacing: .04em;
}

.mc-body {
  padding: 1.25rem 1.4rem 1.4rem;
}
.mc-body h3 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: .5rem;
}
.menu-card--hero .mc-body h3 { font-size: 1.7rem; }
.mc-body p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .88rem;
  color: var(--c-muted);
  padding: 1rem 1.5rem;
  background: rgba(196,82,42,.07);
  border-radius: var(--r-md);
  display: inline-block;
  width: 100%;
}
.menu-note strong { color: var(--c-primary); }

/* ── 9. VIDEO ─────────────────────────────────── */
.video-sec {
  background: var(--c-dark2);
  color: #fff;
}

.video-sec__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.video-player {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  background: #000;
}

.video-text .tag { color: var(--c-accent); }
.video-text .h2 { color: #fff; margin-bottom: 1.1rem; }
.video-text > p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; font-size: .95rem; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.check-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

.video-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

/* ── 10. GALERIE ──────────────────────────────── */
.galerie { background: var(--c-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: .75rem;
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gi-hover {
  position: absolute;
  inset: 0;
  background: rgba(18,10,4,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery-item:hover .gi-hover { opacity: 1; }

.gallery-follow {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── 11. REVIEWS ──────────────────────────────── */
.reviews-sec { background: #F9F1E7; }

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .8rem;
}
.score-num {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}
.stars { color: var(--c-accent); font-size: 1.2rem; display: block; }
.reviews-score small { font-size: .82rem; color: var(--c-muted); }

.reviews-slider { overflow: hidden; position: relative; margin-top: 2rem; }

.reviews-track {
  display: flex;
  gap: 1.4rem;
  transition: transform .45s var(--ease);
}

.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem;
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(196,82,42,.08);
}

.rc-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.rc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rc-head > div { flex: 1; min-width: 0; }
.rc-head strong { display: block; font-size: .9rem; }
.rc-meta { font-size: .75rem; color: var(--c-muted); }
.rc-stars { color: var(--c-accent); font-size: .9rem; flex-shrink: 0; }

.review-card blockquote {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.65;
  font-style: italic;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.rev-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), transform var(--dur);
  line-height: 1;
}
.rev-btn:hover { background: var(--c-primary-d); transform: scale(1.08); }

.rev-dots { display: flex; gap: .5rem; }
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196,82,42,.25);
  transition: background var(--dur), width var(--dur);
}
.rev-dot.active {
  background: var(--c-primary);
  width: 22px;
  border-radius: 4px;
}

.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ── 12. SCHEDULE ─────────────────────────────── */
.schedule-sec { background: var(--c-dark2); color: #fff; }

.schedule-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.schedule-text .tag { color: var(--c-accent); }
.schedule-text .h2 { color: #fff; margin-bottom: 1rem; }
.schedule-text > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: .95rem; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 2rem;
  margin-top: 1rem;
}
.status-badge.open {
  background: rgba(76,175,80,.15);
  color: #81c784;
  border: 1px solid rgba(76,175,80,.3);
}
.status-badge.closed {
  background: rgba(196,82,42,.15);
  color: var(--c-primary);
  border: 1px solid rgba(196,82,42,.3);
}
.status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentcolor;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

.schedule-table-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.schedule-table th, .schedule-table td {
  padding: .95rem 1.4rem;
  font-size: .9rem;
  text-align: start;
}
.schedule-table thead { background: rgba(196,82,42,.15); }
.schedule-table thead th { color: rgba(255,255,255,.9); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.schedule-table tbody tr { border-top: 1px solid rgba(255,255,255,.06); transition: background var(--dur); }
.schedule-table tbody tr:hover:not(.day-closed) { background: rgba(255,255,255,.04); }
.schedule-table tbody td { color: rgba(255,255,255,.8); }
.schedule-table tr.day-today td { color: var(--c-accent); font-weight: 600; }
.day-closed td { color: rgba(255,255,255,.3) !important; }
.day-closed span { color: var(--c-primary); font-size: .8rem; }

/* ── 13. CONTACT ──────────────────────────────── */
.contact-sec { background: var(--c-light); }

.contact-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .h2 { margin-bottom: 2rem; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contact-list strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin-bottom: .15rem;
}
.contact-list a, .contact-list span { font-size: .92rem; color: var(--c-dark); }
.contact-list a:hover { color: var(--c-primary); text-decoration: underline; }

.contact-socials {
  display: flex;
  gap: .75rem;
}
.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur), opacity var(--dur);
}
.soc-btn:hover { transform: translateY(-3px); opacity: .9; }
.soc-fb { background: #1877F2; color: #fff; }
.soc-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.soc-wa { background: #25D366; color: #fff; }

.contact-map {
  height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.contact-map iframe { height: 100%; }

/* ── 14. FOOTER ───────────────────────────────── */
.footer {
  background: var(--c-dark2);
  color: rgba(255,255,255,.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

.footer__brand .logo--light .logo__text { color: rgba(255,255,255,.9); }
.footer__brand p {
  margin-top: 1rem;
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
}
.footer-soc { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-soc .soc-btn { width: 36px; height: 36px; }

.footer__nav h4, .footer__contact h4 {
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--dur); }
.footer__nav a:hover { color: #fff; }

.footer__contact p { font-size: .88rem; margin-bottom: .55rem; }
.footer__contact a { color: rgba(255,255,255,.65); }
.footer__contact a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 1.2rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ── 15. WhatsApp FAB ─────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 1.8rem;
  inset-inline-end: 1.8rem;
  z-index: var(--z-fab);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform var(--dur), box-shadow var(--dur);
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
.wa-fab svg { flex-shrink: 0; }

/* ── 16. BACK TO TOP ──────────────────────────── */
.back-top {
  position: fixed;
  bottom: 5.5rem;
  inset-inline-end: 1.8rem;
  z-index: var(--z-fab);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196,82,42,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--dur), transform var(--dur);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover { background: var(--c-primary-d); transform: translateY(-2px); }

/* ── 17. SCROLL REVEAL ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 18. RESPONSIVE ───────────────────────────── */

/* Tablet ≤ 1024 */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visuals { max-width: 580px; margin-inline: auto; }
  .about__fig-accent { width: 160px; }
  .about__fig-accent img { width: 160px; height: 160px; }
  .about__text { padding-inline-start: 0; }

  .menu-card--hero { grid-column: span 3; grid-template-columns: 1fr; }
  .menu-card--hero .mc-img img { height: 260px; }

  .video-sec__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .schedule-sec__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .contact-sec__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}

/* Mobile ≤ 768 */
@media (max-width: 768px) {
  :root { --gutter: 1rem; }
  .section { padding-block: 3.5rem; }

  /* Header */
  .nav {
    position: fixed;
    inset: 0 0 0 25%;
    background: rgba(18,10,4,.97);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  html[lang="ar"] .nav {
    inset: 0 25% 0 0;
    transform: translateX(-100%);
  }
  .nav.open { transform: translateX(0); }
  html[lang="ar"] .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .nav__link { font-size: 1.15rem; }

  .burger { display: flex; }
  .btn-call span { display: none; }
  .btn-call { padding: .45rem .65rem; }

  /* Hero */
  .hero__content { text-align: center; max-width: 100%; }
  .hero__btns { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__sub { margin-inline: auto; }

  /* Strip */
  .strip__item { padding-inline: 1.2rem; }
  .strip__sep { display: none; }
  .strip__grid { gap: 1.5rem; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .menu-card--hero { grid-column: span 2; grid-template-columns: 1fr; }
  .mc-img img { height: 185px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  /* Reviews */
  .review-card { min-width: calc(100% - .5rem); }

  /* Schedule */
  .schedule-sec__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .contact-sec__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map { height: 300px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1; }
}

/* Small mobile ≤ 480 */
@media (max-width: 480px) {
  .hero__title { font-size: 2.3rem; }
  .hero__btns { flex-direction: column; align-items: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--hero { grid-column: 1; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: 1; }

  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__grid .strip__sep { display: none; }

  .about__fig-accent { display: none; }

  .lang-switcher { scale: .9; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero__video { display: none; }
}

/* Print */
@media print {
  .header, .wa-fab, .back-top, .hero__video, .hero__overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
