/* ————— Frangos Peri Peri — fire-grill design system ————— */
:root {
  --bg: #0E0A08;
  --bg2: #15100C;
  --surface: #1C1511;
  --surface2: #251C16;
  --line: rgba(245, 239, 232, 0.10);
  --line-strong: rgba(245, 239, 232, 0.18);
  --text: #F5EFE8;
  --muted: #A8998A;
  --accent: #E8472B;
  --ember: #F2A33C;
  --radius: 18px;
  --font-display: "Anton", "Cairo", sans-serif;
  --font-body: "Outfit", "Cairo", sans-serif;
  --font-script: "Caveat", cursive;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lang-ar { font-family: "Cairo", var(--font-body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ——— type ——— */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
body.lang-ar .display { font-family: "Cairo", sans-serif; font-weight: 800; text-transform: none; letter-spacing: 0; line-height: 1.25; }
h2.display { font-size: clamp(30px, 4.2vw, 52px); }
.section-sub { color: var(--muted); max-width: 56ch; margin: 14px 0 0; text-wrap: pretty; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember);
}
body.lang-ar .kicker { letter-spacing: 0.05em; }
.price { font-weight: 800; color: var(--ember); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ——— buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; border: 1.5px solid transparent;
  padding: 12px 26px; font-size: 15px; font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
  user-select: none;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 28px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
.btn-accent:hover { box-shadow: 0 10px 34px -6px color-mix(in oklab, var(--accent) 85%, transparent); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.04); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }
.btn-outline { border-color: var(--line-strong); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: #fff; }
.btn-light { background: #fff; color: #1A120D; }
.btn-light:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.link-btn { background: none; border: none; color: var(--muted); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; padding: 4px; }
.link-btn:hover { color: var(--text); }

/* ——— nav ——— */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 50; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; border-bottom: 1px solid transparent; }
.nav.solid { background: rgba(14, 10, 8, 0.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 26px; padding: 14px var(--pad); max-width: 1340px; margin: 0 auto; }
.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-script { font-family: var(--font-script); font-weight: 700; font-size: 1.25em; color: #fff; letter-spacing: 0.01em; }
.logo-tag { font-size: 0.32em; letter-spacing: 0.18em; text-transform: lowercase; color: var(--ember); font-weight: 600; white-space: nowrap; }
.nav-links { display: flex; gap: 4px; margin-inline-start: 10px; }
.nav-link { padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--muted); transition: color .15s, background .15s; }
.nav-link:hover { color: var(--text); }
.nav-link.on { color: #fff; background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-inline-start: auto; }
.lang-switch { display: flex; border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-btn { background: none; border: none; border-radius: 999px; color: var(--muted); font-size: 12.5px; font-weight: 700; padding: 5px 10px; transition: background .15s, color .15s; }
.lang-btn.on { background: var(--text); color: #14100C; }
.cart-btn { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--text); transition: border-color .15s; }
.cart-btn:hover { border-color: var(--accent); }
.cart-count { position: absolute; top: -5px; inset-inline-end: -5px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }
.burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.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); }
.nav-drawer { display: none; flex-direction: column; gap: 6px; padding: 10px var(--pad) 26px; }
.drawer-link { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; padding: 8px 0; color: var(--text); opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
body.lang-ar .drawer-link { font-family: "Cairo", sans-serif; font-weight: 800; text-transform: none; }
.nav-drawer.open .drawer-link { opacity: 1; transform: none; }

/* ——— hero ——— */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: -6% 0; background-size: cover; background-position: center 40%; transform: scale(1.08); will-change: transform; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(14,10,8,0.55) 0%, rgba(14,10,8,0.25) 35%, rgba(14,10,8,0.92) 88%, var(--bg) 100%),
  radial-gradient(110% 80% at 18% 60%, rgba(14,10,8,0.82) 0%, rgba(14,10,8,0.35) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px var(--pad) 110px; max-width: 1340px; margin: 0 auto; width: 100%; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px); }
body.lang-ar .hero-kicker { letter-spacing: 0.05em; }
.hero-title { font-size: clamp(54px, 9.5vw, 138px); margin: 28px 0 0; color: #fff; }
.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: block; }
.accent-line { color: var(--accent); text-shadow: 0 0 60px color-mix(in oklab, var(--accent) 55%, transparent); }
.hero-sub { max-width: 46ch; font-size: clamp(16px, 1.6vw, 19px); color: rgba(245,239,232,0.85); margin: 22px 0 0; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-chips { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.chip-dot { width: 4px; height: 4px; border-radius: 99px; background: var(--muted); }
.hero-open { font-size: 14px; color: rgba(245,239,232,0.8); font-weight: 600; }
.hero-scroll { position: absolute; bottom: 26px; inset-inline-start: var(--pad); z-index: 2; display: flex; align-items: center; gap: 12px; font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,239,232,0.55); }
.hero-scroll-line { width: 54px; height: 1px; background: linear-gradient(90deg, rgba(245,239,232,0.5), transparent); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: scrollhint 2.2s ease-in-out infinite; }
@keyframes scrollhint { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

.rise { opacity: 0; transform: translateY(34px); animation: rise .9s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
body.no-motion .rise { animation: none; opacity: 1; transform: none; }
body.no-motion .hero-scroll-line::after { animation: none; }

/* embers */
.embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ember { position: absolute; bottom: -10px; border-radius: 99px; background: var(--ember); opacity: 0; filter: blur(0.4px); box-shadow: 0 0 8px 1px color-mix(in oklab, var(--ember) 70%, transparent); animation: emberRise linear infinite; }
@keyframes emberRise {
  0% { transform: translate(0, 0); opacity: 0; }
  8% { opacity: 0.9; }
  60% { opacity: 0.5; }
  100% { transform: translate(var(--drift), -105vh); opacity: 0; }
}

/* ——— marquee ——— */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--bg2); }
.marquee-track { display: flex; gap: 38px; width: max-content; animation: marquee 28s linear infinite; }
body.no-motion .marquee-track { animation: none; }
@keyframes marquee { to { transform: translateX(-33.333%); } }
.marquee-word { display: inline-flex; align-items: center; gap: 38px; font-size: 26px; text-transform: uppercase; color: rgba(245,239,232,0.4); white-space: nowrap; }

/* ——— sections ——— */
.section { padding: clamp(64px, 9vw, 120px) var(--pad); max-width: 1340px; margin: 0 auto; }
.section-head { margin-bottom: clamp(30px, 4vw, 50px); }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head h2 { margin-top: 12px; }

/* signature cards */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sig-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease; }
.sig-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.sig-img { aspect-ratio: 4 / 3; overflow: hidden; }
.sig-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.sig-card:hover .sig-img img { transform: scale(1.05); }
.sig-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sig-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sig-name { margin: 0; font-size: 19px; font-weight: 700; }
.sig-desc { margin: 0; color: var(--muted); font-size: 14.5px; flex: 1; }
.sig-body .btn { align-self: flex-start; }

/* heat section */
.heat-section { position: relative; text-align: center; }
.heat-glow { position: absolute; inset: 10% 15%; background: radial-gradient(50% 50% at 50% 60%, color-mix(in oklab, var(--heat-color, var(--accent)) 16%, transparent) 0%, transparent 70%); pointer-events: none; transition: background .5s ease; }
.heat-stage { position: relative; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.heat-flames-big { display: flex; align-items: flex-end; gap: 14px; min-height: 76px; }
.heat-flame-btn { background: none; border: none; padding: 4px; transition: transform .25s ease, filter .25s ease; filter: drop-shadow(0 0 0 transparent); }
.heat-flame-btn.lit { filter: drop-shadow(0 0 14px color-mix(in oklab, var(--heat-color) 60%, transparent)); }
.heat-flame-btn:hover { transform: translateY(-4px); }
.heat-readout { min-height: 92px; }
.heat-name { font-size: clamp(26px, 3.4vw, 38px); color: var(--heat-color); transition: color .4s ease; }
.heat-desc { color: var(--muted); margin: 8px 0 0; }
.heat-slider { -webkit-appearance: none; appearance: none; width: min(420px, 86%); height: 6px; border-radius: 99px; background: linear-gradient(90deg, #8FA84B, #E8A33C, #E8472B, #9B1B0E); outline: none; }
.heat-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 99px; background: #fff; border: 4px solid var(--heat-color); box-shadow: 0 2px 10px rgba(0,0,0,0.5); transition: border-color .3s ease; cursor: grab; }
.heat-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 99px; background: #fff; border: 4px solid var(--heat-color); cursor: grab; }
.heat-ticks { display: flex; justify-content: space-between; width: min(480px, 95%); }
.heat-tick { background: none; border: none; color: var(--muted); font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; padding: 6px 4px; transition: color .2s; }
.heat-tick.on { color: var(--text); }

/* story teaser */
.story-teaser { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.story-img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge { position: absolute; top: 16px; inset-inline-start: 16px; width: 44px; height: 44px; border-radius: 99px; background: var(--accent); display: grid; place-items: center; box-shadow: 0 6px 20px -4px color-mix(in oklab, var(--accent) 70%, transparent); }
.story-copy h2 { margin-top: 12px; }
.story-copy .btn { margin-top: 26px; }

/* promo */
.promo { background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 70%, #7A1100)); border-radius: calc(var(--radius) + 6px); padding: clamp(30px, 4.5vw, 56px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(22px, 4vw, 48px); overflow: hidden; position: relative; }
.promo::after { content: ""; position: absolute; inset: -40% -10% auto auto; width: 380px; height: 380px; border-radius: 99px; background: rgba(255,255,255,0.08); pointer-events: none; }
.promo-stamps { display: grid; grid-template-columns: repeat(5, 38px); gap: 9px; }
.stamp { width: 38px; height: 38px; border-radius: 99px; border: 1.6px dashed rgba(255,255,255,0.55); display: grid; place-items: center; }
.stamp.filled { border-style: solid; background: rgba(255,255,255,0.14); }
.stamp-num { font-weight: 800; font-size: 13px; color: #fff; }
.promo-copy { color: #fff; position: relative; }
.promo-badge { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; background: rgba(255,255,255,0.16); padding: 6px 12px; border-radius: 99px; margin-bottom: 12px; }
body.lang-ar .promo-badge { letter-spacing: 0.04em; }
.promo-copy h2 { font-size: clamp(26px, 3.2vw, 40px); }
.promo-copy p { margin: 10px 0 0; color: rgba(255,255,255,0.85); max-width: 48ch; }
.promo > .btn { position: relative; }

/* locations */
.loc-card { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.loc-map { position: relative; min-height: 280px; background: var(--surface2); overflow: hidden; }
.loc-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,239,232,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(245,239,232,0.06) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 100%); }
.loc-map::after { content: ""; position: absolute; inset: 0; background: radial-gradient(28% 28% at 50% 46%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 100%); }
.loc-pin { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 99px 99px 99px 6px; rotate: -45deg; background: var(--accent); display: grid; place-items: center; box-shadow: 0 10px 30px -6px color-mix(in oklab, var(--accent) 80%, transparent); z-index: 1; }
.loc-pin svg { rotate: 45deg; }
.loc-info { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.loc-address { font-size: 19px; font-weight: 700; margin: 0; }
.loc-meta { color: var(--muted); margin: 0; }
.loc-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

/* halal badge */
.halal-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(143, 200, 122, 0.45); color: #A9D69A; border-radius: 999px; font-weight: 700; letter-spacing: 0.06em; background: rgba(143, 200, 122, 0.08); }

/* ——— footer ——— */
.footer { border-top: 1px solid var(--line); background: var(--bg2); margin-top: clamp(40px, 6vw, 80px); }
.footer-inner { max-width: 1340px; margin: 0 auto; padding: clamp(40px, 5vw, 64px) var(--pad); display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 34px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-tag { color: var(--muted); margin: 0; font-size: 14.5px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: var(--muted); font-weight: 600; transition: color .15s; }
.footer-link:hover { color: var(--text); }
.footer-muted { color: var(--muted); font-size: 14.5px; }
.footer-base { border-top: 1px solid var(--line); padding: 18px var(--pad); max-width: 1340px; margin: 0 auto; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }

/* ——— toast ——— */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px); z-index: 90; display: flex; align-items: center; gap: 9px; background: #241B15; border: 1px solid var(--line-strong); color: var(--text); padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; box-shadow: 0 12px 40px -8px rgba(0,0,0,0.6); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ——— generic pages ——— */
.page { max-width: 1340px; margin: 0 auto; padding: 130px var(--pad) 40px; min-height: 70vh; }
.page-narrow { max-width: 760px; }
.page-head { margin-bottom: clamp(26px, 4vw, 44px); }
.page-title { font-size: clamp(40px, 6vw, 76px); margin-top: 12px; }
.page-fade { animation: pageFade .45s ease; }
body.no-motion .page-fade { animation: none; }
@keyframes pageFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ——— menu page ——— */
.cat-tabs-wrap { position: sticky; top: 64px; z-index: 30; margin: 0 calc(var(--pad) * -1); padding: 10px var(--pad); background: rgba(14,10,8,0.86); backdrop-filter: blur(12px); border-block: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.cat-tabs-wrap::-webkit-scrollbar { display: none; }
.cat-tabs { display: flex; gap: 8px; width: max-content; }
.cat-tab { background: none; border: 1.5px solid var(--line-strong); color: var(--muted); border-radius: 999px; padding: 9px 18px; font-size: 14.5px; font-weight: 700; white-space: nowrap; transition: all .18s ease; }
.cat-tab:hover { color: var(--text); }
.cat-tab.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.mi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 30px; }
.mi-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease; }
.mi-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.mi-img { aspect-ratio: 16 / 9; overflow: hidden; }
.mi-img img { width: 100%; height: 100%; object-fit: cover; }
.mi-img-ph { display: grid; place-items: center; background: repeating-linear-gradient(45deg, var(--surface2) 0 14px, var(--surface) 14px 28px); }
.mi-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mi-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.mi-name { margin: 0; font-size: 17.5px; font-weight: 700; }
.mi-desc { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
.mi-add { align-self: flex-start; min-width: 110px; }

/* heat picker */
.heat-picker { display: flex; flex-wrap: wrap; gap: 6px; }
.heat-chip { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1.5px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12.5px; font-weight: 700; padding: 6px 11px; transition: all .15s ease; }
.heat-chip:hover { border-color: var(--line-strong); color: var(--text); }

/* ——— menu card banner ——— */
.menu-card-banner {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: clamp(26px, 4vw, 44px);
  background: none;
  padding: 0;
  display: block;
  text-align: start;
}
.menu-card-bg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: left top;
  display: block;
  filter: brightness(0.45);
  transition: filter .35s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.menu-card-banner:hover .menu-card-bg { filter: brightness(0.6); transform: scale(1.03); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 32px;
  gap: 14px;
  pointer-events: none;
}
.menu-card-overlay .btn { pointer-events: auto; }

/* ——— lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 16px;
  cursor: zoom-out;
  overflow-y: auto;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(245,239,232,0.12);
  border: 1px solid rgba(245,239,232,0.22);
  color: #fff;
  font-size: 17px;
  display: grid;
  place-items: center;
  z-index: 201;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.lightbox-close:hover { background: rgba(245,239,232,0.24); }
.lightbox-content {
  cursor: default;
  max-width: min(1200px, 96vw);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-content img { width: 100%; height: auto; display: block; }

/* ——— order page ——— */
.order-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: start; }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.mode-btn { background: var(--surface); border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; align-items: flex-start; transition: border-color .18s ease, background .18s ease; }
.mode-btn.on { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, var(--surface)); }
.mode-label { font-weight: 800; color: var(--text); font-size: 15.5px; }
.mode-time { font-size: 13px; color: var(--muted); }
.cart-lines { display: flex; flex-direction: column; gap: 12px; }
.cart-line { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.cart-thumb { width: 86px; height: 86px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-thumb-ph { display: grid; place-items: center; background: var(--surface2); }
.cart-line-info { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-line-top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.cart-line-name { font-weight: 700; }
.cart-heat { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.cart-line-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px; }
.qty button { width: 30px; height: 30px; border-radius: 99px; border: none; background: none; color: var(--text); font-size: 17px; font-weight: 700; display: grid; place-items: center; transition: background .15s; }
.qty button:hover { background: rgba(255,255,255,0.08); }
.qty span { min-width: 26px; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }
.order-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; position: sticky; top: 96px; }
.sum-row { display: flex; justify-content: space-between; color: var(--muted); font-size: 15px; }
.sum-total { color: var(--text); font-weight: 800; font-size: 19px; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; }
.sum-total span:last-child { color: var(--ember); }
.order-summary .link-btn { align-self: center; }
.empty-cart { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 70px 20px; text-align: center; color: var(--muted); border: 1.5px dashed var(--line-strong); border-radius: var(--radius); }
.empty-cart p { margin: 0; font-size: 17px; }

/* forms */
.details-form, .reserve-form { display: flex; flex-direction: column; gap: 16px; }
.form-title { font-size: 17px; font-weight: 800; margin: 10px 0 0; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 13.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.03em; }
.field input { background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: 12px; color: var(--text); padding: 13px 16px; font-size: 15.5px; outline: none; transition: border-color .15s ease; width: 100%; }
.field input:focus { border-color: var(--accent); }
.field input::placeholder { color: #6E6157; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-btn { background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 14.5px; padding: 11px 20px; transition: all .15s ease; }
.pay-btn.on { border-color: var(--accent); color: #fff; background: color-mix(in oklab, var(--accent) 12%, var(--surface)); }
.guest-row { display: flex; gap: 8px; flex-wrap: wrap; }
.guest-btn { width: 46px; height: 46px; border-radius: 99px; background: var(--surface); border: 1.5px solid var(--line); color: var(--muted); font-weight: 800; font-size: 15px; transition: all .15s ease; }
.guest-btn.on { border-color: var(--accent); background: var(--accent); color: #fff; }
.reserve-form .btn-block { margin-top: 8px; }

/* confirmation */
.confirm-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: clamp(36px, 5vw, 60px) clamp(20px, 4vw, 50px); background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); }
.confirm-card .section-sub { margin: 0 auto; }
.confirm-flame { width: 84px; height: 84px; border-radius: 99px; background: var(--accent); display: grid; place-items: center; box-shadow: 0 0 0 10px color-mix(in oklab, var(--accent) 18%, transparent), 0 14px 40px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
.confirm-title { font-size: clamp(30px, 4vw, 46px); }
.confirm-no { color: var(--muted); margin: 0; font-size: 16px; }
.confirm-no strong { color: var(--ember); }
.confirm-card .btn { margin-top: 10px; }

/* ——— story page ——— */
.story-hero { border-radius: calc(var(--radius) + 6px); overflow: hidden; max-height: 520px; }
.story-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.story-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 50px); padding: clamp(30px, 5vw, 60px) 0 10px; }
.story-p { margin: 0; font-size: 17.5px; color: rgba(245,239,232,0.88); text-wrap: pretty; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 30px 0; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.value-card h3 { margin: 4px 0 0; font-size: 18px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.halal-card { display: flex; gap: 26px; align-items: center; background: linear-gradient(135deg, rgba(143,200,122,0.07), transparent 60%), var(--surface); border: 1px solid rgba(143,200,122,0.25); border-radius: calc(var(--radius) + 6px); padding: clamp(26px, 4vw, 44px); margin: 14px 0 30px; flex-wrap: wrap; }
.halal-title { font-size: clamp(24px, 3vw, 36px); margin-bottom: 8px; }
.story-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; }

/* ——— responsive: tablet ——— */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-drawer { display: flex; max-height: 0; overflow: hidden; transition: max-height .35s ease; padding-block: 0; }
  .nav-drawer.open { max-height: 420px; padding-block: 10px 26px; background: rgba(14,10,8,0.96); }
  .nav-order { display: none; }
  .sig-grid, .mi-grid { grid-template-columns: repeat(2, 1fr); }
  .promo { grid-template-columns: 1fr; justify-items: start; }
  .order-grid { grid-template-columns: 1.4fr 1fr; }
}

/* ——— responsive: phone ——— */
@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .hero-title { font-size: clamp(46px, 14vw, 72px); }
  .hero-content { padding-top: 110px; padding-bottom: 90px; }
  .sig-grid, .mi-grid, .values-grid, .story-gallery { grid-template-columns: 1fr; }
  .story-teaser { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 4 / 3.4; }
  .story-cols { grid-template-columns: 1fr; }
  .loc-card { grid-template-columns: 1fr; }
  .loc-map { min-height: 220px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .order-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .field-row { grid-template-columns: 1fr; }
  .cat-tabs-wrap { top: 58px; }
  .marquee-word { font-size: 20px; gap: 26px; }
  .marquee-track { gap: 26px; }
  .lang-switch { padding: 2px; }
  .hero-scroll { display: none; }
}
