/* =========================================
   Dahia Burger — Stylesheet
   Brand: orange / red / dark roasted brown
   ========================================= */

:root {
  /* Brand colors — sampled from the official Dahia logo (coral + orange + charcoal) */
  --brand-coral: #fb4d4e;          /* primary brand colour */
  --brand-orange: #fb4d4e;         /* primary accent (coral) — alias for existing refs */
  --brand-orange-soft: #ff7d6e;
  --brand-amber: #f6902f;          /* secondary accent — the orange of the logo "I" */
  --brand-red: #e23a47;            /* deeper coral, used as the gradient partner */
  --brand-deep: #9b2530;           /* deep coral for the contact panel */
  --brand-cream: #fff4ee;
  --brand-yellow: #fbb13c;         /* golden highlight for prices & stars */

  /* Surface */
  --bg: #14080a;
  --bg-2: #1d0e0e;
  --bg-3: #281514;
  --surface: #1a0e0d;
  --surface-2: #221412;
  --surface-3: #2c1a18;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #fff6ec;
  --text-soft: #d9c3b3;
  --text-muted: #9a8478;

  /* Layout */
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(0,0,0,.25);
  --shadow-md: 0 14px 34px rgba(0,0,0,.32);
  --shadow-lg: 0 26px 60px rgba(0,0,0,.42);
  --shadow-glow: 0 18px 60px rgba(251,77,78,.32);

  --container: 1200px;
  --header-h: 76px;
  --topbar-h: 36px;

  /* Type */
  --ff-display: "Bebas Neue", "Poppins", system-ui, sans-serif;
  --ff-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-arabic: "Cairo", "Poppins", system-ui, sans-serif;
}

/* Base reset */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
}


/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 3px; }
.btn-sm { padding: 9px 16px; font-size: 13px; gap: 6px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(251,77,78,.35), inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(251,77,78,.45), inset 0 -2px 0 rgba(0,0,0,.18); }

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--brand-red);
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
}
.btn-light:hover { transform: translateY(-2px); background: var(--brand-cream); }


/* =========================================
   Top bar (info strip)
   ========================================= */
.topbar {
  background: #0d0606;
  color: var(--text-soft);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: var(--topbar-h);
  white-space: nowrap;
  overflow: hidden;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
}
.topbar-link:hover { color: var(--brand-orange); }
.topbar-sep { color: rgba(255,255,255,.18); }

@media (max-width: 640px) {
  .topbar-hide-mobile { display: none; }
}
@media (max-width: 540px) {
  .topbar { font-size: 12px; }
  .topbar-inner { gap: 10px; }
}
@media (max-width: 380px) {
  .topbar-inner .topbar-sep:first-of-type,
  .topbar-inner .topbar-link:nth-of-type(2) { display: none; }
}


/* =========================================
   Header / Nav
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 8, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, background .2s ease;
}
.header.is-scrolled {
  background: rgba(15, 6, 7, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 56px;
  width: auto;
  transition: transform .2s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-link.is-active { color: var(--brand-orange); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  border-radius: 50%;
  transform: translateX(-50%);
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  position: relative;
  padding: 0;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  /* Drop backdrop-filter so .header doesn't become the containing block for the
     position: fixed .nav drawer (which would collapse it to the header's height). */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 6, 7, 0.96);
  }
  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: #160a09;
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 18px;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.5,.1,.3,1);
    box-shadow: -30px 0 60px rgba(0,0,0,.5);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-link {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 17px;
  }
  .nav-link:hover { background: rgba(255,255,255,.04); }
  .nav-link.is-active::after { display: none; }
  .nav-link.is-active { background: rgba(251,77,78,.10); color: var(--brand-orange); }
}

@media (max-width: 540px) {
  :root { --header-h: 64px; }
  .header-inner { gap: 8px; }
  .brand-logo { height: 44px; }
  .header-cta { gap: 6px; }
  .header-cta .btn-sm { padding: 8px 12px; font-size: 12px; }
  .nav-toggle { width: 42px; height: 42px; }
}
@media (max-width: 380px) {
  .brand-tagline { display: none; }
  .header-cta .btn-sm span { display: none; }
  .header-cta .btn-sm { padding: 9px 10px; }
  .header-cta .btn-sm svg { width: 18px; height: 18px; }
}


/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 600px at 20% 0%, rgba(251,77,78,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 30%, rgba(226,58,71,.18), transparent 70%),
    linear-gradient(180deg, #14080a 0%, #1a0c0c 70%, #14080a 100%);
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -160px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(246,144,47,.20), transparent 70%);
  filter: blur(20px);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  justify-content: center;
}

/* Hero slider */
.hero-slider {
  position: relative;
  width: 100%;
}
.hero-slides {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  border-radius: var(--radius-xl, 18px);
}
.hero-slide {
  grid-area: stack;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition:
    opacity .55s cubic-bezier(.2,.7,.3,1),
    transform .65s cubic-bezier(.2,.7,.3,1),
    visibility 0s linear .55s;
  pointer-events: none;
}
[dir="rtl"] .hero-slide { transform: translateX(-40px); }
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity .55s cubic-bezier(.2,.7,.3,1),
    transform .65s cubic-bezier(.2,.7,.3,1),
    visibility 0s linear 0s;
  pointer-events: auto;
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(20, 8, 10, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
  opacity: .85;
}
.hero-arrow:hover {
  background: rgba(239, 91, 34, .85);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}
.hero-arrow:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}
.hero-arrow-prev { left: -8px; }
.hero-arrow-next { right: -8px; }
[dir="rtl"] .hero-arrow-prev { left: auto; right: -8px; }
[dir="rtl"] .hero-arrow-next { right: auto; left: -8px; }
[dir="rtl"] .hero-arrow svg { transform: scaleX(-1); }

/* Hero dots */
.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-dot {
  position: relative;
  appearance: none;
  border: 0;
  background: rgba(255,255,255,.18);
  width: 28px;
  height: 6px;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: background .25s ease, width .35s ease;
}
.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-orange) 60%, var(--brand-red) 100%);
  transform: translateX(-100%);
  transition: transform 0s linear;
}
.hero-dot.is-active {
  background: rgba(255,255,255,.18);
  width: 56px;
}
.hero-dot.is-active::after {
  transform: translateX(0);
  transition: transform var(--hero-dot-fill, 6s) linear;
}
.hero-dot.is-active.is-paused::after {
  transition: none;
}
.hero-dot:hover { background: rgba(255,255,255,.32); }
.hero-dot:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-leaving {
    transition: opacity .2s linear;
    transform: none;
  }
  .hero-dot.is-active::after { transition: none; transform: translateX(0); }
}

.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 7.6vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-orange) 60%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(251,77,78,.35));
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  margin: 0 0 30px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item strong {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-meta-item span { color: var(--text-muted); font-size: 13px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.hero-card:hover { transform: rotate(-1deg) scale(1.02); }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--brand-cream);
  color: var(--brand-red);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
  transform: rotate(3deg);
  font-family: var(--ff-body);
}
.hero-badge strong { display: block; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.hero-badge span { display: block; font-size: 14px; color: #5b1e10; }
.hero-badge em {
  display: block;
  font-style: normal;
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  margin-top: 2px;
  color: var(--brand-red);
}

.hero-mascot {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.5));
  transform: rotate(8deg);
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-12px); }
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.32);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--brand-orange);
  border-radius: 2px;
  animation: scrolly 1.6s ease-in-out infinite;
}
@keyframes scrolly {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 960px) {
  .hero { padding: 60px 0 90px; }
  .hero-inner {
    gap: 28px;
    min-height: 0;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-slide .hero-visual { order: -1; }
  .hero-card { max-width: 360px; aspect-ratio: 1 / 1; }
  .hero-mascot { width: 100px; height: 100px; top: -28px; right: -8px; }
  .hero-scroll { display: none; }
  .hero-arrow { width: 40px; height: 40px; top: 28%; }
  .hero-arrow-prev { left: 4px; }
  .hero-arrow-next { right: 4px; }
  [dir="rtl"] .hero-arrow-prev { left: auto; right: 4px; }
  [dir="rtl"] .hero-arrow-next { right: auto; left: 4px; }
}

@media (max-width: 540px) {
  .hero { padding: 36px 0 70px; }
  .hero-inner { gap: 24px; }
  .hero-slide { gap: 28px; }
  .hero-card { max-width: 300px; }
  .hero-mascot { width: 86px; height: 86px; top: -22px; right: -6px; }
  .hero-badge { padding: 10px 14px; bottom: 16px; left: 16px; }
  .hero-badge strong { font-size: 12px; }
  .hero-badge span { font-size: 12px; }
  .hero-badge em { font-size: 24px; }
  .eyebrow { margin-bottom: 16px; padding: 6px 12px; font-size: 11px; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 22px; }
  .hero-cta { gap: 10px; margin-bottom: 0; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 22px; }
  .hero-meta-item strong { font-size: 22px; }
  .hero-meta-item span { font-size: 11px; line-height: 1.3; }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow svg { width: 18px; height: 18px; }
  .hero-dots { margin-top: 16px; gap: 8px; }
  .hero-dot { width: 22px; height: 5px; }
  .hero-dot.is-active { width: 42px; }
}
@media (max-width: 380px) {
  .hero-meta-item strong { font-size: 19px; }
  .hero-meta-item span { font-size: 10px; }
  .hero-card { max-width: 260px; }
}


/* =========================================
   Section primitives
   ========================================= */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
@media (max-width: 540px) {
  .section-head { margin: 0 auto 32px; }
  .section-sub { font-size: 15px; }
}
.section-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--brand-yellow); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--text);
}
.section-title .accent {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-sub {
  color: var(--text-soft);
  font-size: 16px;
  margin: 0;
}


/* =========================================
   About
   ========================================= */
.about {
  padding: 100px 0;
  background:
    radial-gradient(800px 400px at 90% 80%, rgba(226,58,71,.06), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { font-size: 17px; color: var(--text-soft); line-height: 1.8; }
.about-text em { color: var(--brand-orange); font-style: normal; font-weight: 600; }
.about-tag {
  font-family: var(--ff-arabic);
  font-size: 22px;
  color: var(--brand-yellow);
  margin-top: 20px;
}
.about-tag strong { font-weight: 900; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats > div { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--brand-orange);
  line-height: 1;
}
.about-stats span { font-size: 13px; color: var(--text-muted); }

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  height: 460px;
}
.about-photos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-photos img:first-child { grid-row: 1 / span 2; }

@media (max-width: 960px) {
  .about { padding: 70px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { height: 360px; }
}
@media (max-width: 540px) {
  .about { padding: 56px 0; }
  .about-photos { height: 260px; gap: 10px; }
  .about-text p { font-size: 16px; line-height: 1.7; }
  .about-tag { font-size: 19px; margin-top: 16px; }
  .about-stats { gap: 10px; padding-top: 22px; margin-top: 26px; }
  .about-stats strong { font-size: 26px; }
  .about-stats span { font-size: 12px; }
}


/* =========================================
   Menu
   ========================================= */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.chip {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all .18s ease;
}
.chip:hover { color: var(--text); background: rgba(255,255,255,.08); }
.chip.is-active {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(251,77,78,.35);
}

.menu-category {
  margin-bottom: 60px;
  animation: fadeIn .4s ease;
}
.menu-category[hidden] { display: none; }

.menu-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--line-strong);
}
.menu-cat-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--text);
}
.menu-legend {
  display: grid;
  grid-template-columns: repeat(3, 38px);
  gap: 8px;
}
.menu-legend.two-col { grid-template-columns: repeat(2, 56px); }
.menu-legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand-orange);
  background: rgba(251,77,78,.12);
  border: 1px solid rgba(251,77,78,.3);
  border-radius: 999px;
  padding: 5px 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.menu-item {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-item:hover {
  border-color: rgba(251,77,78,.4);
  transform: translateY(-2px);
  background: var(--surface-3);
}
.menu-item.is-featured {
  border-color: rgba(251,77,78,.45);
  background: linear-gradient(135deg, rgba(251,77,78,.10), rgba(226,58,71,.06));
}
.menu-item.compact { padding: 14px 18px; gap: 6px; }

.menu-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.menu-item h4 {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.menu-item h4 small { font-weight: 400; color: var(--text-muted); font-size: 12px; margin-left: 4px; }
.tag-pop {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 6px;
}
.menu-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.55;
}

.menu-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.menu-prices.two { grid-template-columns: repeat(2, 1fr); }
.menu-prices.one { grid-template-columns: 1fr; justify-content: end; max-width: 80px; margin-left: auto; }
.menu-prices span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0,0,0,.28);
  border-radius: 10px;
  padding: 8px 6px;
  border: 1px solid var(--line);
  min-height: 52px;
}
.menu-prices.one span { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); border-color: transparent; min-height: 38px; }
.menu-prices.one b { color: #fff; }
.menu-prices b {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--brand-yellow);
}
.menu-prices em {
  font-style: normal;
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1;
}
.menu-item.is-featured .menu-prices em { color: rgba(255,255,255,.72); }

.menu-item.compact .menu-prices {
  grid-template-columns: 60px;
  justify-content: end;
  margin-top: 0;
}

/* =========================================
   Menu item burger illustrations
   ========================================= */
.menu-item.has-image { padding-top: 0; overflow: hidden; }

.burger-image {
  position: relative;
  margin: -1px -22px 6px;
  height: 240px;
  background:
    radial-gradient(80% 60% at 50% 60%, rgba(251,77,78,.16), rgba(251,77,78,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,0) 60%);
  border-bottom: 1px solid var(--line);
  display: block;
}
.menu-item.is-featured .burger-image {
  background:
    radial-gradient(80% 60% at 50% 60%, rgba(246,144,47,.20), rgba(251,77,78,.05) 65%, rgba(251,77,78,0) 80%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,0) 60%);
}
.burger-image svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.burger-image svg[data-active="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Soft floor shadow under the burger */
.burger-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 70%;
  height: 14px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.45), rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* Price/size buttons act as visual variant selectors */
.menu-item.has-image .menu-prices span {
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.menu-item.has-image .menu-prices span:hover {
  background: rgba(251,77,78,.12);
  border-color: rgba(251,77,78,.45);
  transform: translateY(-1px);
}
.menu-item.has-image .menu-prices span.is-active {
  background: linear-gradient(135deg, rgba(251,77,78,.22), rgba(226,58,71,.14));
  border-color: rgba(251,77,78,.6);
  box-shadow: 0 4px 14px rgba(251,77,78,.18), inset 0 0 0 1px rgba(255,255,255,.04);
}
.menu-item.has-image .menu-prices span.is-active b { color: var(--brand-yellow); }
.menu-item.has-image .menu-prices span.is-active em { color: rgba(255,255,255,.78); }

@media (max-width: 720px) {
  .burger-image { height: 200px; }
}

/* Combo banner */
.combo-banner {
  margin-top: 60px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.combo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='p' patternUnits='userSpaceOnUse' width='40' height='40'><path d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.06)' stroke-width='1'/></pattern></defs><rect width='100%25' height='100%25' fill='url(%23p)'/></svg>");
  opacity: .6;
}
.combo-banner-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.combo-banner h3 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: 0.02em;
  margin: 6px 0 6px;
  color: #fff;
  line-height: 1;
}
.combo-banner .combo-plus {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 0 12px;
  margin: 0 4px;
}
.combo-eyebrow {
  display: inline-block;
  background: rgba(0,0,0,.20);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.combo-banner p { color: #fff0e6; font-size: 16px; margin: 0; }
.combo-banner p strong { color: #fff; }

@media (max-width: 768px) {
  .menu { padding: 70px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .combo-banner { padding: 28px; }
}

/* Menu filter chips become a horizontal snap scroller on mobile */
@media (max-width: 720px) {
  .menu-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline-start: 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -18px 36px;
    padding: 2px 18px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .menu-filters::-webkit-scrollbar { display: none; }
  .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 9px 16px;
    font-size: 13px;
  }
  .menu-category { margin-bottom: 44px; }
  .menu-cat-head { margin-bottom: 16px; padding-bottom: 10px; }
  .menu-item { padding: 16px 18px; }
  .menu-item h4 { font-size: 16px; }
  .menu-prices b { font-size: 18px; }
  .combo-banner { margin-top: 40px; padding: 24px; border-radius: var(--radius-lg); }
  .combo-banner-inner { gap: 18px; }
  .combo-banner p { font-size: 14px; }
  .combo-banner .btn-light { width: 100%; }
}
@media (max-width: 540px) {
  .menu { padding: 56px 0; }
  .burger-image { height: 170px; margin: -1px -18px 4px; }
  .menu-item.has-image { padding-left: 18px; padding-right: 18px; }
  .menu-prices span { min-height: 46px; padding: 6px 4px; }
  .menu-prices em { font-size: 9px; }
}
@media (max-width: 380px) {
  .menu-grid-compact { grid-template-columns: 1fr; }
  .burger-image { height: 150px; }
}


/* =========================================
   Gallery
   ========================================= */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
  cursor: zoom-in;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .3s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

.gallery-cta { display: flex; justify-content: center; margin-top: 36px; }

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}
@media (max-width: 720px) {
  .gallery { padding: 70px 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
  .gallery-item.large { grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery { padding: 56px 0; }
  .gallery-cta { margin-top: 24px; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-auto-rows: 140px; gap: 6px; }
  .gallery-item { border-radius: 12px; }
}


/* =========================================
   Videos
   ========================================= */
.videos {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.video-card {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,77,78,.5);
  box-shadow: var(--shadow-md);
}
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.95);
  color: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
  transition: transform .25s ease;
}
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card:hover .video-play { transform: scale(1.1); }
.video-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.video-info h4 { margin: 0; font-size: 15px; }
.video-info span { font-size: 12px; color: var(--brand-orange); font-weight: 600; }

/* ---- Reels scroller (replaces IG iframe) ---- */
.reels-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.reels-head h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: .2px;
}
.reels-follow {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  text-decoration: none;
  transition: color .2s ease;
}
.reels-follow:hover { color: var(--brand-red); }

.reels-scroller { position: relative; }
.reels-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 16px;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
}
.reels-track::-webkit-scrollbar { display: none; }
.reels-track:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.reel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 12, 8, .85);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.reels-nav:hover {
  background: var(--brand-red);
  transform: translateY(-50%) scale(1.06);
}
.reels-nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.reels-prev { inset-inline-start: -8px; }
.reels-next { inset-inline-end: -8px; }
[dir="rtl"] .reels-nav svg { transform: scaleX(-1); }

.reels-scroller::before,
.reels-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 16px;
  width: 48px;
  pointer-events: none;
  z-index: 1;
}
.reels-scroller::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.reels-scroller::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}
[dir="rtl"] .reels-scroller::before { background: linear-gradient(to left, var(--bg-2), transparent); }
[dir="rtl"] .reels-scroller::after { background: linear-gradient(to right, var(--bg-2), transparent); }

@media (max-width: 960px) {
  .videos { padding: 70px 0; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-head h3 { font-size: 19px; }
  .reel-card { flex-basis: 220px; }
  .reels-nav { width: 38px; height: 38px; }
}
@media (max-width: 540px) {
  .videos { padding: 56px 0; }
}
@media (max-width: 480px) {
  .videos-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 36px; }
  .video-info { padding: 10px 12px; }
  .video-info h4 { font-size: 13px; }
  .video-info span { font-size: 11px; }
  .video-play { width: 52px; height: 52px; margin: -26px 0 0 -26px; }
  .video-play svg { width: 22px; height: 22px; }
  .reel-card { flex-basis: 180px; }
  .reels-track { gap: 12px; }
  .reels-nav { display: none; }
  .reels-scroller::before,
  .reels-scroller::after { width: 24px; }
  .reels-head h3 { font-size: 17px; }
}


/* =========================================
   Location
   ========================================= */
.location {
  padding: 100px 0;
  background: var(--bg-2);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.location-info .section-title { text-align: left; margin-bottom: 18px; }
.location-info .section-eyebrow { display: inline-block; }
.location-address {
  color: var(--text);
  font-size: 17px;
  margin: 0 0 24px;
  line-height: 1.6;
}
.location-address strong { color: var(--brand-orange); }
.location-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 15px;
}
.location-list a { color: var(--text); border-bottom: 1px dotted var(--brand-orange); }
.location-list a:hover { color: var(--brand-orange); }
.location-list svg { color: var(--brand-orange); flex-shrink: 0; }
.location-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.location-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  background: var(--surface-3);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(0.6) brightness(.95) contrast(1.1);
}

@media (max-width: 900px) {
  .location { padding: 70px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 30px; }
  .location-info .section-title { text-align: center; }
  .location-info .section-eyebrow { display: block; text-align: center; }
  .location-address { text-align: center; }
  .location-list { max-width: 380px; margin-left: auto; margin-right: auto; }
  .location-cta { justify-content: center; }
  .location-map { aspect-ratio: 5 / 4; }
}
@media (max-width: 540px) {
  .location { padding: 56px 0; }
  .location-address { font-size: 16px; }
  .location-list li { font-size: 14px; gap: 10px; }
  .location-cta { flex-direction: column; align-items: stretch; }
  .location-cta .btn { width: 100%; }
  .location-map { aspect-ratio: 4 / 3; border-radius: var(--radius); }
}


/* =========================================
   Contact
   ========================================= */
.contact {
  padding: 100px 0;
  background: var(--bg);
}
.contact-card {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(255,255,255,.12), transparent 70%),
    linear-gradient(135deg, var(--brand-deep) 0%, #200807 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(251,77,78,.5), transparent 70%);
  filter: blur(20px);
}
.contact-card-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-card p { color: var(--text-soft); font-size: 16px; margin: 8px 0 0; max-width: 380px; }
.contact-buttons { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }

@media (max-width: 768px) {
  .contact { padding: 70px 0; }
  .contact-card { padding: 36px 26px; }
  .contact-buttons { width: 100%; min-width: 0; }
}
@media (max-width: 540px) {
  .contact { padding: 56px 0; }
  .contact-card { padding: 30px 20px; border-radius: var(--radius-lg); }
  .contact-card-inner { gap: 24px; }
  .contact-card p { font-size: 15px; }
  .contact-buttons .btn-lg { padding: 14px 18px; font-size: 15px; gap: 8px; }
  .contact-buttons .btn-lg svg { width: 20px; height: 20px; }
}


/* =========================================
   Footer
   ========================================= */
.footer {
  background: #0c0606;
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .footer-logo { height: 64px; width: auto; margin-bottom: 14px; }
.footer-brand p { max-width: 320px; color: var(--text-muted); }
.footer-col h5 {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin: 0 0 14px;
}
.footer-col p { margin: 0 0 8px; }
.footer-col a:hover { color: var(--brand-orange); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .18s ease;
}
.footer-social:hover {
  border-color: var(--brand-orange);
  background: rgba(251,77,78,.08);
  color: var(--brand-orange);
}
.footer-social svg { color: var(--brand-orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-nav { display: flex; gap: 20px; }
.footer-nav a:hover { color: var(--brand-orange); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer { padding: 48px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-brand .footer-logo { height: 52px; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 10px; }
  .footer-nav { gap: 16px; }
}


/* =========================================
   Floating mobile actions
   ========================================= */
.float-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}
.float-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; }
.float-call { background: var(--brand-orange); }

@media (min-width: 1024px) {
  .float-actions { display: none; }
}
@media (max-width: 540px) {
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-actions { gap: 10px; }
  /* Keep enough room below the footer so the stacked float buttons don't overlap
     the copyright/nav line at the very bottom of the page. */
  .footer { padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px)); }
}


/* =========================================
   Lightbox
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.20); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 540px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}


/* =========================================
   Animations / utilities
   ========================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   Language switch (topbar pill)
   ========================================= */
.lang-switch {
  margin-inline-start: auto;
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--text-soft);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 4px 10px;
  min-width: 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
  line-height: 1;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
  color: #fff;
  box-shadow: 0 4px 12px rgba(251,77,78,.35);
}
.lang-btn[data-lang-btn="ar"] {
  font-family: var(--ff-arabic);
  font-size: 15px;
  padding: 2px 10px;
}
@media (max-width: 540px) {
  .lang-switch { padding: 2px; }
  .lang-btn { font-size: 11px; padding: 5px 9px; min-width: 28px; }
  .lang-btn[data-lang-btn="ar"] { font-size: 14px; padding: 3px 9px; }
}


/* =========================================
   Brand tagline (under logo)
   ========================================= */
.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.brand-tagline {
  font-family: var(--ff-arabic);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--brand-orange);
  white-space: nowrap;
  line-height: 1;
  margin-top: -2px;
  opacity: .9;
}
body.lang-en .brand-tagline { font-family: var(--ff-body); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 540px) {
  .brand-tagline { font-size: 10px; }
}


/* =========================================
   Menu category title + Arabic accent
   ========================================= */
.menu-cat-titles {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.menu-cat-tag {
  font-family: var(--ff-arabic);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-orange);
  background: rgba(251,77,78,.10);
  border: 1px solid rgba(251,77,78,.25);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0;
}
@media (max-width: 540px) {
  .menu-cat-tag { font-size: 14px; padding: 3px 10px; }
}


/* =========================================
   Specials section
   ========================================= */
.specials {
  padding: 90px 0;
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(251,77,78,.05), transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.special-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.special-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,77,78,.35);
  box-shadow: var(--shadow-md);
}
.special-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--text);
  line-height: 1.15;
}
.special-card h3 strong { color: var(--brand-orange); font-weight: inherit; }
.special-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.special-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(251,77,78,.12);
  border-radius: 999px;
  padding: 4px 10px;
}
.special-card .btn { align-self: flex-start; margin-top: 6px; }

.special-card-primary {
  background:
    radial-gradient(500px 250px at 100% 0%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.special-card-primary h3 { color: #fff; }
.special-card-primary h3 strong { color: #fff; }
.special-card-primary p { color: #fff0e6; }
.special-card-primary .special-tag {
  background: rgba(0,0,0,.20);
  color: #fff;
}

.special-card-tagline {
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(400px 200px at 50% 50%, rgba(251,77,78,.12), transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-3) 100%);
  border-style: dashed;
}
.special-tagline-ar {
  font-family: var(--ff-arabic);
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-yellow);
  margin: 0;
  line-height: 1.1;
}
.special-tagline-en {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 4px 0 0;
}

@media (max-width: 1024px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .specials { padding: 70px 0; }
  .specials-grid { grid-template-columns: 1fr; }
}


/* =========================================
   Arabic / RTL
   ========================================= */
body.lang-ar {
  font-family: var(--ff-arabic);
}
body.lang-ar .hero-title,
body.lang-ar .section-title,
body.lang-ar .menu-cat-head h3,
body.lang-ar .combo-banner h3 {
  font-family: var(--ff-arabic);
  letter-spacing: 0;
}
body.lang-ar .hero-meta-item strong,
body.lang-ar .about-stats strong,
body.lang-ar .hero-badge em,
body.lang-ar .menu-prices b {
  font-family: var(--ff-display);
}

[dir="rtl"] .hero-meta,
[dir="rtl"] .hero-sub { max-width: 540px; }

[dir="rtl"] .hero-mascot {
  right: auto;
  left: -10px;
  transform: rotate(-8deg);
  animation: floaty-rtl 4.5s ease-in-out infinite;
}
@keyframes floaty-rtl {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-12px); }
}

[dir="rtl"] .hero-card { transform: rotate(3deg); }
[dir="rtl"] .hero-card:hover { transform: rotate(1deg) scale(1.02); }

[dir="rtl"] .hero-badge {
  left: auto;
  right: 22px;
  transform: rotate(-3deg);
}

[dir="rtl"] .tag-pop { margin-left: 0; margin-right: 6px; }
[dir="rtl"] .menu-item h4 small { margin-left: 0; margin-right: 4px; }
[dir="rtl"] .menu-prices.one { margin-left: 0; margin-right: auto; }

[dir="rtl"] .float-actions { right: auto; left: max(16px, env(safe-area-inset-left)); }


/* =========================================
   Brand lockup — mascot + wordmark (header)
   ========================================= */
.brand {
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.brand-mascot {
  height: 54px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,.4));
  transform-origin: bottom center;
  transition: transform .35s cubic-bezier(.34,1.56,.5,1);
  will-change: transform;
}
.brand:hover .brand-mascot { transform: rotate(-7deg) scale(1.07); }
.brand-wordmark { display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; transition: none; }
.brand:hover .brand-logo { transform: none; }
.brand-logo-ar { display: none; }
body.lang-ar .brand-logo-en { display: none; }
body.lang-ar .brand-logo-ar { display: inline-block; }
@media (max-width: 540px) {
  .brand-mascot { height: 44px; }
  .brand-logo { height: 34px; }
  .brand { gap: 8px; }
}
@media (max-width: 360px) {
  .brand-mascot { height: 40px; }
  .brand-logo { height: 30px; }
}

/* Footer brand lockup */
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-mascot { height: 60px; width: auto; filter: drop-shadow(0 6px 12px rgba(0,0,0,.5)); }
.footer-brand .footer-logo { height: 46px; width: auto; margin-bottom: 0; }
.footer-logo-ar { display: none; }
body.lang-ar .footer-logo-en { display: none; }
body.lang-ar .footer-logo-ar { display: inline-block; }
@media (max-width: 480px) {
  .footer-mascot { height: 52px; }
  .footer-brand .footer-logo { height: 40px; }
}

/* =========================================
   Branches (location)
   ========================================= */
.branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.branch-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.branch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,77,78,.45);
  box-shadow: var(--shadow-md);
}
.branch-map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-3);
  overflow: hidden;
}
.branch-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.6) brightness(.95) contrast(1.05);
  transition: filter .4s ease;
}
.branch-card:hover .branch-map iframe { filter: none; }
.branch-pin {
  position: absolute;
  top: 12px;
  inset-inline-start: 14px;
  z-index: 2;
  pointer-events: none;
  animation: bob 4s ease-in-out infinite;
}
.branch-pin img { height: 44px; width: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,.45)); }
.branch-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.branch-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-amber);
  background: rgba(246,144,47,.12);
  border: 1px solid rgba(246,144,47,.3);
  border-radius: 999px;
  padding: 4px 12px;
}
.branch-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: .02em;
  margin: 2px 0 0;
  color: var(--text);
}
.branch-addr { color: var(--text-soft); font-size: 14.5px; margin: 0; line-height: 1.5; }
.branch-meta { display: flex; flex-direction: column; gap: 8px; margin: 6px 0 4px; }
.branch-meta li { display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 14px; }
.branch-meta svg { color: var(--brand-coral); flex-shrink: 0; }
.branch-body .btn { align-self: flex-start; margin-top: auto; }

/* Location footer strip — phones + delivery */
.location-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
  padding: 22px 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.location-phones { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.location-phones-label { font-weight: 700; color: var(--text); font-size: 14px; }
.phone-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(251,77,78,.10);
  border: 1px solid rgba(251,77,78,.28);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.phone-chip svg { color: var(--brand-coral); transition: color .18s ease; }
.phone-chip:hover {
  background: var(--brand-coral);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251,77,78,.4);
}
.phone-chip:hover svg { color: #fff; }
.phone-chip.light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); color: #fff; }
.phone-chip.light svg { color: #fff; }
.phone-chip.light:hover { background: #fff; color: var(--brand-red); }
.phone-chip.light:hover svg { color: var(--brand-red); }
.location-delivery { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; margin: 0; }
.location-delivery svg { color: var(--brand-amber); flex-shrink: 0; }

@media (max-width: 860px) {
  .branches { grid-template-columns: 1fr; gap: 18px; }
  .location-foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .location-phones { flex-direction: column; align-items: flex-start; gap: 10px; }
  .phone-chips { gap: 8px; }
  .phone-chip { font-size: 13px; padding: 7px 12px; }
  .location-foot { padding: 18px; }
}

/* =========================================
   Contact mascot + phone row
   ========================================= */
.contact-card-inner { z-index: 1; }
.contact-mascot {
  position: absolute;
  inset-inline-start: 30px;
  bottom: -16px;
  width: clamp(120px, 13vw, 170px);
  height: auto;
  z-index: 0;
  transform: rotate(-7deg);
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.5));
  pointer-events: none;
  animation: floaty-soft 6s ease-in-out infinite;
}
[dir="rtl"] .contact-mascot { transform: rotate(7deg); }
.contact-phones { margin-top: 6px; }
.contact-phones-label {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-phones .phone-chips { gap: 8px; }
@media (max-width: 900px) { .contact-mascot { display: none; } }

/* =========================================
   Reveal stagger + mascot motion
   ========================================= */
[data-reveal] { transition-delay: var(--reveal-delay, 0s); }
.specials-grid .special-card:nth-child(2) { --reveal-delay: .07s; }
.specials-grid .special-card:nth-child(3) { --reveal-delay: .14s; }
.specials-grid .special-card:nth-child(4) { --reveal-delay: .21s; }
.branches .branch-card:nth-child(2) { --reveal-delay: .12s; }
.videos-grid .video-card:nth-child(2) { --reveal-delay: .06s; }
.videos-grid .video-card:nth-child(3) { --reveal-delay: .12s; }
.videos-grid .video-card:nth-child(4) { --reveal-delay: .18s; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floaty-soft {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50%      { transform: rotate(-7deg) translateY(-12px); }
}
[dir="rtl"] .contact-mascot { animation-name: floaty-soft-rtl; }
@keyframes floaty-soft-rtl {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50%      { transform: rotate(7deg) translateY(-12px); }
}

/* Mascot entrance (added by motion.js as .mascot-pop) */
.mascot-pop { animation: mascot-pop .7s cubic-bezier(.34,1.56,.5,1) both; }
@keyframes mascot-pop {
  0%   { opacity: 0; transform: scale(.5) translateY(24px) rotate(-12deg); }
  60%  { opacity: 1; transform: scale(1.06) translateY(0) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Back-to-top mascot button */
.to-top {
  position: fixed;
  inset-block-end: calc(18px + env(safe-area-inset-bottom, 0px));
  inset-inline-start: max(16px, env(safe-area-inset-left));
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-coral), var(--brand-amber));
  box-shadow: 0 12px 28px rgba(251,77,78,.4);
  cursor: pointer;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.8);
  transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.5,1), visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-3px) scale(1.06) rotate(-4deg); }
.to-top img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 4px rgba(0,0,0,.3)); }
@media (max-width: 1023px) { .to-top { display: none; } }

/* Header mascot waves hello (driven by motion.js) */
.brand-mascot.is-waving { animation: mascot-wave .8s ease; }
@keyframes mascot-wave {
  0%, 100% { transform: rotate(0); }
  20%      { transform: rotate(-13deg); }
  45%      { transform: rotate(9deg); }
  70%      { transform: rotate(-7deg); }
  88%      { transform: rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mascot, .brand-mascot.is-waving, .hero-mascot, .contact-mascot,
  .branch-pin, .mascot-pop, .to-top { animation: none !important; }
}

[dir="rtl"] .lightbox-close { right: auto; left: 20px; }
[dir="rtl"] .lightbox-prev  { left: auto; right: 24px; }
[dir="rtl"] .lightbox-next  { right: auto; left: 24px; }
@media (max-width: 540px) {
  [dir="rtl"] .lightbox-prev { left: auto; right: 12px; }
  [dir="rtl"] .lightbox-next { right: auto; left: 12px; }
}

[dir="rtl"] .location-info .section-title { text-align: right; }

/* Mobile nav drawer slides in from the start edge */
@media (max-width: 960px) {
  [dir="rtl"] .nav {
    right: auto;
    left: 0;
    border-left: 0;
    border-right: 1px solid var(--line);
    transform: translateX(-110%);
    box-shadow: 30px 0 60px rgba(0,0,0,.5);
  }
  [dir="rtl"] .nav.is-open { transform: translateX(0); }
}

/* Underline marker stays visually centred under the active nav link */
[dir="rtl"] .nav-link.is-active::after { transform: translateX(50%); }

/* The combo "+" sits in mixed-text — keep it readable */
[dir="rtl"] .combo-plus { display: inline-block; }

/* Prices and stat numbers stay LTR even in Arabic context */
.menu-prices,
.hero-meta-item strong,
.about-stats strong,
.hero-badge em {
  direction: ltr;
  unicode-bidi: isolate;
}
[dir="rtl"] .hero-meta-item,
[dir="rtl"] .about-stats > div { text-align: right; }
