:root {
  --ink: #080808;
  --ink-2: #161616;
  --cream: #f6f6f4;
  --paper: #ffffff;
  --paper-2: #ecebea;
  --brand: #a7191f;
  --brand-dark: #7d1015;
  --gold: #c31c24;
  --green: #a7191f;
  --muted: #6e6b69;
  --white: #ffffff;
  --line: rgba(25, 21, 18, .12);
  --shadow-soft: 0 28px 70px rgba(39, 27, 18, .12);
  --shadow-card: 0 20px 50px rgba(39, 27, 18, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(13, 122, 70, .35);
  outline-offset: 3px;
}
::selection { background: var(--brand); color: #fff; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 99999;
  background: #fff;
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: top .25s ease;
}
.skip-link:focus { top: 18px; }

.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  box-shadow: 0 0 16px rgba(255, 107, 53, .45);
}

/* Navigation */
.navbar-savoria {
  padding: 18px 0;
  color: #fff;
  transition: .35s ease;
  z-index: 1050;
}
.navbar-savoria.scrolled {
  padding: 10px 0;
  background: rgba(20, 16, 13, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit !important;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-decoration: none;
}
.brand-dot {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  background: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 0 0 6px rgba(13,122,70,.12);
}
.brand-dot::before {
  content: "☾";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transform: translate(-1px,-1px) rotate(-18deg);
}
.brand-dot::after {
  content: "★";
  position: absolute;
  color: var(--gold);
  right: 2px;
  top: 5px;
  font-size: .47rem;
  line-height: 1;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand-copy strong { font-size: 1rem; letter-spacing: .18em; }
.brand-copy small { font-size: .46rem; letter-spacing: .17em; color: rgba(255,255,255,.56); font-weight: 700; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.48); }
.navbar-savoria .nav-link {
  position: relative;
  color: rgba(255,255,255,.72) !important;
  font-size: .92rem;
  font-weight: 600;
  padding: 9px 12px !important;
  transition: .25s ease;
}
.navbar-savoria .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.navbar-savoria .nav-link:hover,
.navbar-savoria .nav-link.active { color: #fff !important; }
.navbar-savoria .nav-link.active::after,
.navbar-savoria .nav-link:hover::after { transform: scaleX(1); }
.btn-nav-outline {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: .86rem;
  font-weight: 700;
}
.btn-nav-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cart-trigger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  border: 0;
  position: relative;
  transition: transform .25s var(--ease), background .25s ease;
}
.cart-trigger:hover { transform: translateY(-2px) rotate(-3deg); background: var(--gold); }
.cart-trigger svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: .68rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  border: 2px solid #0b1610;
}
.menu-lines { width: 28px; height: 24px; display: grid; align-content: center; gap: 5px; }
.menu-lines i { height: 2px; background: #fff; display: block; border-radius: 4px; }
.menu-lines i:nth-child(2) { width: 70%; margin-left: auto; }

/* Buttons */
.btn-brand,
.btn-dark-brand,
.btn-light-brand,
.btn-ghost,
.btn-contact-link {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  padding-left: 22px;
  padding-right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-brand { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 14px 30px rgba(13,122,70,.24); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(7,91,52,.28); }
.btn-brand svg,
.btn-light-brand svg,
.btn-contact-link svg { width: 18px; height: 18px; }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }
.btn-light-brand { background: var(--cream); color: var(--ink); border: 0; }
.btn-light-brand:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.btn-dark-brand { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.btn-dark-brand:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.btn-contact-link { color: var(--ink); border: 0; }
.btn-contact-link:hover { color: var(--brand-dark); transform: translateX(3px); }

/* Global section styling */
.section-space { padding: 118px 0; }
.section-heading h2,
.menu-title h2,
.story-section h2,
.review-section h2,
.contact-card h2 {
  font-family: var(--serif);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 0;
}
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 5rem); max-width: 900px; }
.section-copy { color: var(--muted); font-size: 1.04rem; max-width: 600px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
  margin-bottom: 18px;
}
.eyebrow > span { width: 32px; height: 1px; background: currentColor; opacity: .9; }
.eyebrow.dark { color: #7c651f; }
.eyebrow.light { color: var(--gold); }

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(13,122,70,.12), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(239,189,102,.09), transparent 24%),
    #0b1610;
  color: #fff;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,.55) 47%, rgba(255,255,255,.55) 49%, transparent 50%),
    linear-gradient(-45deg, transparent 46%, rgba(226,184,93,.65) 47%, rgba(226,184,93,.65) 49%, transparent 50%);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.2), rgba(0,0,0,.85), rgba(0,0,0,.25));
}
.hero-container { flex: 1; display: flex; align-items: center; padding-top: 135px; padding-bottom: 85px; }
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(255,255,255,.12) .6px, transparent .6px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .22; border: 1px solid rgba(255,255,255,.16); }
.hero-orb-one { width: 440px; height: 440px; right: -180px; top: 80px; }
.hero-orb-two { width: 280px; height: 280px; left: -150px; bottom: 80px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.3rem);
  line-height: .89;
  letter-spacing: -.055em;
  max-width: 760px;
  margin: 0 0 28px;
}
.hero-copy h1 em { color: var(--brand); font-weight: 400; }
.hero-lead { max-width: 660px; color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.5vw, 1.2rem); margin-bottom: 34px; }
.pakistan-tag { display: inline-flex; align-items: center; gap: 12px; margin: -12px 0 28px; padding: 9px 13px; border-radius: 999px; border: 1px solid rgba(226,184,93,.24); background: rgba(255,255,255,.04); }
.pakistan-tag span { color: var(--gold); font-family: Georgia, 'Times New Roman', serif; font-size: .95rem; }
.pakistan-tag small { color: rgba(255,255,255,.48); font-size: .63rem; text-transform: uppercase; letter-spacing: .11em; }
.hero-cta-group { margin-bottom: 42px; }
.hero-proof { color: rgba(255,255,255,.72); }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.proof-rating { display: grid; grid-template-columns: auto auto 1fr; gap: 8px; align-items: center; }
.proof-rating .stars { grid-column: 1 / -1; margin-bottom: -3px; }
.proof-rating strong, .proof-mini strong { color: #fff; font-size: 1rem; }
.proof-rating span, .proof-mini span { font-size: .79rem; color: rgba(255,255,255,.5); }
.proof-mini { display: flex; flex-direction: column; }
.proof-divider { height: 42px; width: 1px; background: rgba(255,255,255,.14); }

.hero-visual-wrap { position: relative; z-index: 1; }
.dish-stage {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.hero-dish {
  width: 96%;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 45px 45px rgba(0,0,0,.35));
  animation: dishFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes dishFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-17px) rotate(1.5deg); }
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  z-index: 0;
}
.ring-one { width: 78%; aspect-ratio: 1; animation: ringPulse 6s ease-in-out infinite; }
.ring-two { width: 95%; aspect-ratio: 1; border-style: dashed; opacity: .55; animation: ringSpin 38s linear infinite; }
@keyframes ringPulse { 50% { transform: scale(1.06); opacity: .55; } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px 11px 11px;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  animation: badgeFloat 4.5s ease-in-out infinite;
}
.floating-badge strong { display: block; font-size: .78rem; }
.floating-badge span { display: block; font-size: .68rem; color: #756d66; white-space: nowrap; }
.floating-icon { width: 38px; height: 38px; border-radius: 12px; background: #e8f5ed; display: grid; place-items: center; font-size: 1.05rem; }
.floating-icon.leaf { background: #e8f2e9; }
.badge-top { right: -8px; top: 21%; }
.badge-bottom { left: 3%; bottom: 15%; animation-delay: -2.2s; }
@keyframes badgeFloat { 50% { transform: translateY(-9px); } }
.food-float { position: absolute; z-index: 2; color: var(--gold); opacity: .8; }
.float-one { font-size: 1.7rem; top: 12%; left: 16%; animation: starDrift 5s ease-in-out infinite; }
.float-two { color: var(--brand); font-size: 1rem; right: 11%; bottom: 20%; animation: starDrift 7s ease-in-out infinite reverse; }
.float-three { font-size: 1.1rem; right: 20%; top: 6%; animation: starDrift 6s ease-in-out infinite -1s; }
@keyframes starDrift { 50% { transform: translate(7px,-12px) rotate(20deg); opacity: .35; } }

.hero-strip { position: relative; z-index: 5; border-top: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.hero-strip-item { min-height: 94px; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-strip-item:last-child { border-right: 0; }
.strip-icon { color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.hero-strip-item strong { display: block; font-size: .86rem; color: #fff; }
.hero-strip-item small { display: block; color: rgba(255,255,255,.42); font-size: .73rem; }

/* Signature cards */
.signature-section { background: var(--cream); }
.signature-card {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20,13,10,.94) 0%, rgba(20,13,10,.16) 60%, transparent 100%);
}
.signature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.signature-card:hover img { transform: scale(1.07) rotate(1deg); }
.signature-card:hover .signature-content a svg { transform: translateX(5px); }
.signature-content { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.signature-content > span { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-weight: 800; }
.signature-content h3 { font-family: var(--serif); font-size: 2.15rem; line-height: 1.03; margin: 9px 0 10px; }
.signature-content p { color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: 17px; }
.signature-content a { color: #fff; text-decoration: none; font-size: .78rem; font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }
.signature-content a svg { width: 16px; height: 16px; transition: transform .25s ease; }
.sig-one { transform: rotate(-1.1deg); }
.sig-two { transform: translateY(22px); }
.sig-three { transform: rotate(1.1deg); }

/* Menu */
.menu-section { background: #f2e9dd; position: relative; }
.menu-section::before { content: "MENU"; position: absolute; top: 65px; right: 3vw; font-size: clamp(6rem, 14vw, 15rem); line-height: 1; font-weight: 900; letter-spacing: -.08em; color: rgba(44,31,24,.035); pointer-events: none; }
.menu-title { max-width: 850px; margin-bottom: 46px; position: relative; z-index: 1; }
.menu-title h2 { font-size: clamp(2.8rem, 5.5vw, 5.3rem); margin-bottom: 18px; }
.menu-title .section-copy { margin-inline: auto; }
.menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}
.menu-filter-scroll { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  border: 1px solid rgba(25,21,18,.14);
  background: rgba(255,255,255,.52);
  color: #5d534c;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: .78rem;
  font-weight: 750;
  transition: .25s ease;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); background: #fff; }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-search {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(25,21,18,.14);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
}
.menu-search svg { width: 17px; height: 17px; color: #756a61; flex: 0 0 auto; }
.menu-search input { border: 0; outline: 0; background: transparent; width: 100%; font-size: .82rem; color: var(--ink); }
.menu-card {
  height: 100%;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(25,21,18,.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(53,38,27,.05);
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
}
.menu-card:hover { transform: translateY(-7px); background: #fff; box-shadow: 0 24px 52px rgba(53,38,27,.11); }
.menu-image-wrap { height: 245px; position: relative; overflow: hidden; background: #2a1f19; }
.menu-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.menu-card:hover .menu-image-wrap img { transform: scale(1.055); }
.menu-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 7px 20px rgba(0,0,0,.1);
}
.menu-tag-icon { position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(23,18,15,.84); color: var(--gold); }
.menu-tag-icon svg { width: 16px; height: 16px; }
.menu-card-body { padding: 21px 21px 20px; }
.menu-card-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.menu-card h3 { font-size: 1.12rem; font-weight: 800; letter-spacing: -.025em; margin: 0; }
.menu-price { white-space: nowrap; color: var(--brand-dark); font-size: 1.12rem; font-weight: 850; }
.menu-desc { min-height: 49px; color: #7b7068; font-size: .81rem; margin: 9px 0 18px; }
.menu-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid rgba(25,21,18,.08); }
.menu-meta { display: flex; gap: 12px; color: #8b8179; font-size: .72rem; }
.menu-meta span { display: inline-flex; align-items: center; gap: 5px; }
.menu-meta svg { width: 14px; height: 14px; }
.add-cart-btn {
  border: 0;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  transition: transform .25s var(--ease), background .25s ease;
  flex: 0 0 auto;
}
.add-cart-btn:hover { transform: rotate(90deg) scale(1.06); background: var(--brand); }
.add-cart-btn svg { width: 19px; height: 19px; }
.menu-empty { padding: 70px 20px 10px; }
.empty-emoji { font-size: 3rem; margin-bottom: 10px; }
.menu-empty h3 { font-family: var(--serif); font-size: 2rem; }
.menu-empty p { color: var(--muted); }

/* Story */
.story-section { background: var(--ink); color: #fff; overflow: hidden; }
.story-section h2 { font-size: clamp(2.8rem, 5.2vw, 5.1rem); max-width: 700px; margin-bottom: 25px; }
.story-lead { font-size: 1.15rem; color: rgba(255,255,255,.83); max-width: 650px; }
.story-section p:not(.story-lead) { color: rgba(255,255,255,.55); max-width: 650px; }
.story-collage { position: relative; min-height: 610px; }
.story-img { position: absolute; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 30px 70px rgba(0,0,0,.26); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-main { left: 0; top: 20px; width: 78%; height: 500px; transform: rotate(-2deg); }
.story-small { width: 48%; height: 300px; right: 0; bottom: 20px; transform: rotate(3deg); }
.story-year { position: absolute; right: 20px; top: 3px; width: 138px; height: 138px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; align-content: center; text-align: center; box-shadow: 0 20px 45px rgba(13,122,70,.25); transform: rotate(7deg); }
.story-year strong { font-family: var(--serif); font-size: 3rem; line-height: .9; }
.story-year span { font-size: .64rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.stat-box { border-left: 1px solid rgba(255,255,255,.14); padding-left: 15px; min-height: 75px; }
.stat-box strong { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat-box span { display: block; font-size: .69rem; color: rgba(255,255,255,.48); margin-top: 5px; }

/* Services */
.service-band { background: #142019; color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.service-item { min-height: 170px; padding: 42px 36px; display: flex; align-items: flex-start; gap: 24px; border-right: 1px solid rgba(255,255,255,.08); }
.service-item:last-child { border-right: 0; }
.service-number { color: var(--brand); font-size: .7rem; font-weight: 800; letter-spacing: .14em; padding-top: 5px; }
.service-item h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 7px; }
.service-item p { color: rgba(255,255,255,.45); font-size: .82rem; margin: 0; }

/* Gallery */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #142019;
  grid-column: span 4;
  grid-row: span 2;
  cursor: zoom-in;
}
.gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,7,.74), transparent 58%); opacity: .8; transition: .35s ease; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-tile span { position: absolute; left: 20px; bottom: 17px; z-index: 2; color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gallery-tile:hover img { transform: scale(1.065); }
.gallery-tile:hover::after { opacity: 1; }
.gallery-wide { grid-column: span 8; }
.gallery-tall { grid-column: span 4; grid-row: span 4; }
.gallery-food { grid-column: span 8; }

/* Reviews */
.review-section { background: #16241b; color: #fff; }
.review-section h2 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); margin-bottom: 22px; }
.review-section > .container-xl > .row > .col-lg-4 > p { color: rgba(255,255,255,.52); max-width: 430px; }
.review-total { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.review-total > strong { font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--gold); }
.review-total span { display: block; color: rgba(255,255,255,.45); font-size: .72rem; margin-top: 4px; }
.review-card { position: relative; background: #fff7ed; color: var(--ink); border-radius: 30px; padding: clamp(30px, 5vw, 60px); min-height: 370px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.review-card::before { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(13,122,70,.08); top: -100px; right: -60px; }
.quote-icon { width: 44px; height: 44px; color: var(--brand); margin-bottom: 24px; }
.review-card > p { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.3rem); line-height: 1.2; letter-spacing: -.03em; margin-bottom: 30px; max-width: 900px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 800; }
.review-person strong { display: block; font-size: .84rem; }
.review-person span { display: block; color: #847970; font-size: .7rem; }
.review-controls { display: flex; gap: 8px; margin-top: 14px; justify-content: flex-end; }
.review-controls .carousel-control-prev,
.review-controls .carousel-control-next { position: static; width: 48px; height: 48px; opacity: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #fff; background: rgba(255,255,255,.04); }
.review-controls button:hover { background: var(--brand); border-color: var(--brand); }

/* Contact CTA */
.contact-section { background: var(--cream); padding: 105px 0 45px; }
.contact-card { background: var(--gold); border-radius: 36px; padding: clamp(34px, 6vw, 72px); position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-card::before, .contact-card::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(25,21,18,.14); pointer-events: none; }
.contact-card::before { width: 350px; height: 350px; right: -90px; top: -180px; }
.contact-card::after { width: 230px; height: 230px; right: 35px; top: -125px; }
.contact-card h2 { font-size: clamp(2.7rem, 5vw, 5rem); max-width: 820px; }
.contact-card p { color: rgba(25,21,18,.62); font-size: 1.02rem; margin-top: 16px; }
.contact-details { position: relative; z-index: 2; display: grid; gap: 12px; }
.contact-details > * { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); padding: 15px 16px; border-radius: 16px; background: rgba(255,255,255,.38); border: 1px solid rgba(25,21,18,.09); transition: .25s ease; }
.contact-details a:hover { background: rgba(255,255,255,.7); transform: translateX(4px); }
.contact-details svg { width: 22px; height: 22px; flex: 0 0 auto; }
.contact-details small { display: block; font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(25,21,18,.5); }
.contact-details strong { display: block; font-size: .84rem; }

/* Newsletter */
.newsletter-section { background: var(--cream); padding: 50px 0 80px; }
.newsletter-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.newsletter-row > div > span { font-size: .66rem; letter-spacing: .15em; font-weight: 800; color: #8a6a21; }
.newsletter-row h3 { font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 2.2rem); margin: 4px 0 0; }
.newsletter-form { width: min(510px, 100%); display: flex; align-items: center; border-bottom: 1px solid #8b8179; }
.newsletter-form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 13px 0; min-width: 0; }
.newsletter-form button { border: 0; background: none; padding: 13px 0 13px 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; font-size: .8rem; white-space: nowrap; }
.newsletter-form button svg { width: 17px; height: 17px; }
.newsletter-form button:hover { color: var(--brand-dark); }

/* Footer */
.site-footer { background: #0d1711; color: #fff; padding: 75px 0 28px; }
.footer-main { padding-bottom: 55px; }
.footer-brand { color: #fff !important; margin-bottom: 18px; }
.footer-note { color: rgba(255,255,255,.46); max-width: 430px; font-size: .86rem; }
.footer-socials { display: flex; gap: 8px; margin-top: 24px; }
.footer-socials a { width: 39px; height: 39px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); display: grid; place-items: center; text-decoration: none; color: rgba(255,255,255,.75); font-size: .68rem; font-weight: 800; transition: .25s ease; }
.footer-socials a:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-3px); }
.site-footer h4 { color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: rgba(255,255,255,.47); font-size: .78rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.32); font-size: .68rem; }

/* Cart */
.cart-canvas { width: min(470px, 100vw); background: #fffaf3; border-left: 0; }
.cart-header { padding: 25px 26px 18px; border-bottom: 1px solid rgba(25,21,18,.08); }
.cart-kicker { color: #8a6a21; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.cart-header h2 { font-family: var(--serif); font-size: 2.1rem; line-height: 1; margin-top: 5px; }
.cart-header h2 small { font-family: var(--sans); font-size: .7rem; color: #91877f; font-weight: 500; }
.icon-close { width: 40px; height: 40px; border: 1px solid rgba(25,21,18,.12); border-radius: 50%; background: transparent; display: grid; place-items: center; color: currentColor; transition: .25s ease; }
.icon-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(8deg); }
.icon-close svg { width: 18px; height: 18px; }
.cart-body { padding: 20px 25px; }
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty-icon { font-size: 3.3rem; margin-bottom: 10px; }
.cart-empty h3 { font-family: var(--serif); font-size: 1.8rem; }
.cart-empty p { color: var(--muted); font-size: .84rem; margin-bottom: 22px; }
.cart-items { display: grid; gap: 13px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 13px; align-items: center; padding-bottom: 13px; border-bottom: 1px solid rgba(25,21,18,.08); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 15px; background: #231a15; }
.cart-item-name { font-size: .86rem; font-weight: 800; line-height: 1.2; }
.cart-item-cat { color: #91877f; font-size: .67rem; margin-top: 3px; }
.cart-item-price { font-size: .82rem; font-weight: 800; margin-top: 6px; color: var(--brand-dark); }
.cart-item-actions { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.qty-btn { width: 27px; height: 27px; border-radius: 50%; border: 1px solid rgba(25,21,18,.12); background: #fff; display: grid; place-items: center; }
.qty-btn:hover { background: var(--ink); color: #fff; }
.qty-btn svg { width: 13px; height: 13px; }
.qty-value { min-width: 20px; text-align: center; font-size: .75rem; font-weight: 800; }
.remove-btn { width: 32px; height: 32px; border: 0; background: none; color: #a59a91; display: grid; place-items: center; }
.remove-btn:hover { color: #c13e2c; }
.remove-btn svg { width: 17px; height: 17px; }
.cart-footer { padding: 21px 26px 24px; border-top: 1px solid rgba(25,21,18,.08); background: #fffaf3; }
.cart-line, .cart-total { display: flex; justify-content: space-between; align-items: center; }
.cart-line { font-size: .76rem; color: #7d736b; margin-bottom: 8px; }
.cart-line strong { color: var(--ink); }
.free-label { color: var(--green) !important; }
.cart-total { padding: 14px 0 18px; margin-top: 12px; border-top: 1px dashed rgba(25,21,18,.14); font-size: 1rem; }
.cart-total strong { font-family: var(--serif); font-size: 1.7rem; }
.cart-note { display: block; text-align: center; color: #9b9189; font-size: .65rem; margin-top: 9px; }

/* Modals */
.savoria-modal .modal-dialog { max-width: 920px; }
.savoria-modal .modal-content { border: 0; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.25); position: relative; background: #fffaf3; }
.modal-x { position: absolute; top: 16px; right: 16px; z-index: 6; background: rgba(255,255,255,.85); }
.reservation-visual { min-height: 630px; background: linear-gradient(rgba(23,18,15,.15), rgba(23,18,15,.65)), url('assets/images/store-3.svg') center/cover; color: #fff; display: flex; align-items: end; padding: 38px; }
.reservation-visual span { color: var(--gold); font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.reservation-visual h3 { font-family: var(--serif); font-size: 2.7rem; line-height: 1; margin: 10px 0 14px; }
.reservation-visual p { color: rgba(255,255,255,.72); font-size: .8rem; }
.reservation-form-wrap { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.modal-form-heading { margin-bottom: 24px; }
.modal-form-heading > span { color: #8a6a21; font-size: .66rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.modal-form-heading h2 { font-family: var(--serif); font-size: 3rem; letter-spacing: -.04em; margin: 3px 0 6px; }
.modal-form-heading p { color: var(--muted); font-size: .82rem; }
.form-label { font-size: .7rem; font-weight: 800; color: #5f554e; }
.savoria-modal .form-control, .savoria-modal .form-select { border: 1px solid rgba(25,21,18,.12); background: #fff; border-radius: 12px; min-height: 49px; font-size: .82rem; box-shadow: none; }
.savoria-modal .form-control:focus, .savoria-modal .form-select:focus { border-color: rgba(13,122,70,.65); box-shadow: 0 0 0 4px rgba(13,122,70,.08); }
.savoria-modal textarea.form-control { min-height: 88px; }
.form-success { text-align: center; padding: 40px 10px; }
.success-check { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #e7f4e9; color: var(--green); font-size: 2rem; font-weight: 800; }
.form-success h3 { font-family: var(--serif); font-size: 2.2rem; }
.form-success p { color: var(--muted); max-width: 490px; margin: 0 auto 22px; font-size: .84rem; }
.checkout-modal-content { padding: 42px; }
.checkout-total-preview { display: flex; align-items: center; justify-content: space-between; border-radius: 14px; background: #f1e8dc; padding: 15px 17px; }
.checkout-total-preview span { font-size: .74rem; color: var(--muted); }
.checkout-total-preview strong { font-family: var(--serif); font-size: 1.55rem; }

.gallery-modal .modal-dialog { max-width: 1150px; }
.gallery-modal .modal-content { overflow: hidden; border: 0; border-radius: 28px; background: #0b1610; color: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.4); }
.gallery-modal img { width: 100%; max-height: 76vh; object-fit: cover; background: #0b1610; }
.gallery-modal-caption { padding: 18px 24px; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.light-close { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(20,16,13,.5); }

/* Toasts */
.toast-stack { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2000; display: grid; gap: 10px; pointer-events: none; }
.mini-toast { display: flex; align-items: center; gap: 10px; min-width: min(360px, calc(100vw - 30px)); background: #1d1815; color: #fff; padding: 12px 15px; border-radius: 15px; box-shadow: 0 20px 55px rgba(0,0,0,.24); opacity: 0; transform: translateY(16px) scale(.98); animation: toastIn .35s var(--ease) forwards; }
.mini-toast.hide { animation: toastOut .3s ease forwards; }
.mini-toast .toast-check { width: 28px; height: 28px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; font-weight: 800; }
.mini-toast strong { font-size: .76rem; }
.mini-toast span { display: block; color: rgba(255,255,255,.52); font-size: .66rem; }
@keyframes toastIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(.98); } }

/* Reveal animation */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: opacity .8s var(--ease), transform .9s var(--ease); }
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }
.reveal-scale { transform: scale(.95); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-copy h1 { font-size: clamp(3.8rem, 6.6vw, 6rem); }
  .dish-stage { width: min(560px, 100%); }
  .floating-badge { transform: scale(.92); }
  .gallery-grid { grid-auto-rows: 160px; }
}

@media (max-width: 991.98px) {
  .navbar-savoria { background: rgba(20,16,13,.88); backdrop-filter: blur(14px); padding: 12px 0; }
  .navbar-collapse { background: #211915; margin-top: 11px; padding: 15px; border-radius: 18px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 25px 60px rgba(0,0,0,.22); }
  .navbar-savoria .nav-link { padding: 10px 4px !important; }
  .navbar-savoria .nav-link::after { left: 4px; right: calc(100% - 38px); }
  .hero-container { padding-top: 135px; padding-bottom: 50px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta-group, .hero-proof { justify-content: center; }
  .dish-stage { margin: 0 auto; max-width: 590px; }
  .badge-top { right: 2%; }
  .story-collage { min-height: 540px; max-width: 720px; margin: 0 auto; }
  .story-main { height: 450px; }
  .story-small { height: 260px; }
  .menu-toolbar { align-items: stretch; flex-direction: column; }
  .menu-search { width: 100%; min-width: 0; }
  .gallery-grid { grid-template-columns: repeat(8, 1fr); }
  .gallery-tile { grid-column: span 4; }
  .gallery-wide, .gallery-food { grid-column: span 8; }
  .gallery-tall { grid-column: span 4; grid-row: span 3; }
  .newsletter-row { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .reservation-visual { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .section-space { padding: 84px 0; }
  .hero-container { padding-top: 125px; padding-bottom: 35px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 14vw, 5.2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-strip-item { min-height: 82px; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-strip-item:nth-child(2) { border-right: 0; }
  .floating-badge { padding: 8px 11px 8px 8px; transform: scale(.8); transform-origin: center; }
  .floating-icon { width: 34px; height: 34px; }
  .badge-top { right: -7%; top: 18%; }
  .badge-bottom { left: -5%; bottom: 10%; }
  .signature-card { min-height: 460px; }
  .sig-one, .sig-two, .sig-three { transform: none; }
  .menu-image-wrap { height: 220px; }
  .story-collage { min-height: 480px; }
  .story-main { width: 83%; height: 390px; }
  .story-small { width: 53%; height: 230px; }
  .story-year { width: 110px; height: 110px; right: 4px; }
  .story-year strong { font-size: 2.4rem; }
  .service-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); min-height: 140px; padding: 34px 22px; }
  .service-item:last-child { border-bottom: 0; }
  .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .gallery-tile, .gallery-wide, .gallery-tall, .gallery-food { grid-column: span 1; grid-row: span 1; border-radius: 18px; }
  .gallery-wide, .gallery-food { grid-column: span 2; }
  .gallery-wide { grid-row: span 2; }
  .review-card { min-height: 340px; }
  .contact-card { border-radius: 26px; }
  .footer-bottom { flex-direction: column; }
  .reservation-form-wrap, .checkout-modal-content { padding: 30px 22px; }
  .reservation-visual { padding: 28px; }
  .reservation-visual h3 { font-size: 2.1rem; }
}

@media (max-width: 575.98px) {
  .container-xl { padding-left: 18px; padding-right: 18px; }
  .hero-copy h1 { font-size: clamp(3.35rem, 16.3vw, 4.7rem); }
  .hero-cta-group .btn { width: 100%; }
  .hero-proof { gap: 14px !important; }
  .dish-stage { width: 108%; margin-left: -4%; }
  .floating-badge { display: none; }
  .hero-strip-item { gap: 8px; }
  .strip-icon { font-size: .6rem; }
  .hero-strip-item strong { font-size: .75rem; }
  .hero-strip-item small { font-size: .65rem; }
  .section-heading h2, .menu-title h2, .story-section h2, .review-section h2, .contact-card h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .signature-card { min-height: 420px; }
  .signature-content { left: 22px; right: 22px; bottom: 22px; }
  .signature-content h3 { font-size: 1.85rem; }
  .menu-filter-scroll { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; margin-right: -18px; padding-right: 18px; }
  .menu-filter-scroll::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; }
  .menu-image-wrap { height: 210px; }
  .story-collage { min-height: 420px; }
  .story-main { height: 340px; width: 86%; }
  .story-small { height: 190px; width: 54%; }
  .story-year { top: -8px; width: 96px; height: 96px; }
  .story-year span { font-size: .55rem; }
  .stat-box strong { font-size: 2.15rem; }
  .stat-box span { font-size: .62rem; }
  .gallery-grid { grid-auto-rows: 145px; }
  .gallery-wide { grid-row: span 2; }
  .review-card > p { font-size: 1.48rem; }
  .newsletter-form { flex-direction: column; align-items: stretch; border-bottom: 0; gap: 9px; }
  .newsletter-form input { border-bottom: 1px solid #8b8179; }
  .newsletter-form button { padding-left: 0; }
  .cart-item { grid-template-columns: 68px 1fr auto; }
  .cart-item img { width: 68px; height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}


/* Uploaded menu enhancements */
.menu-card { display: flex; flex-direction: column; }
.menu-card-body { display: flex; flex-direction: column; flex: 1; }
.menu-card-head { min-height: 54px; }
.menu-card-spacer { min-height: 58px; }
.menu-note {
  position: absolute;
  top: 15px;
  right: 15px;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(23,18,15,.88);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.menu-variant-label { display: block; margin: 12px 0 16px; }
.menu-variant-label > span {
  display: block;
  margin-bottom: 6px;
  color: #8b8179;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-variant-select {
  width: 100%;
  border: 1px solid rgba(25,21,18,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  padding: 10px 36px 10px 12px;
  font-size: .78rem;
  font-weight: 750;
  outline: none;
}
.menu-variant-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(13,122,70,.12); }
.menu-card-foot { margin-top: auto; }
.menu-price { font-size: .98rem; text-align: right; }
.menu-meta { min-width: 0; }
.menu-meta span { max-width: 180px; line-height: 1.2; }
@media (max-width: 575.98px) {
  .menu-card-head { min-height: 0; }
  .menu-card-spacer { min-height: 38px; }
}


/* Pakistani restaurant content accents */
.menu-story-kicker { color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .16em; margin-bottom: 20px; }
.order-row-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.order-row-actions .btn-contact-link { padding-top: 10px; padding-bottom: 10px; }
.story-year strong { letter-spacing: -.06em; }
@media (max-width: 767.98px) {
  .brand-copy small { display: none; }
  .pakistan-tag { border-radius: 18px; align-items: flex-start; flex-direction: column; gap: 2px; }
  .order-row-actions { justify-content: flex-start; width: 100%; }
}

/* ============================================================
   KAFE NAWAB — menu-inspired black / red / white redesign
   ============================================================ */
body { background: #f5f5f3; }
::selection { background: var(--brand); color: #fff; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-color: rgba(167,25,31,.38);
}
.page-progress { background: var(--brand); box-shadow: 0 0 16px rgba(167,25,31,.45); }

.navbar-savoria.scrolled { background: rgba(5,5,5,.93); }
.brand-dot {
  background: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 0 0 6px rgba(167,25,31,.12);
}
.brand-dot::after { color: #fff; }
.navbar-savoria .nav-link::after { background: var(--brand); }
.cart-count { background: var(--brand); border-color: #050505; }
.cart-trigger:hover { background: var(--brand); color: #fff; }
.btn-brand { background: var(--brand); border-color: var(--brand); box-shadow: 0 14px 30px rgba(167,25,31,.23); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 18px 34px rgba(126,16,21,.28); }
.btn-light-brand:hover { background: var(--brand); color: #fff; }
.btn-dark-brand:hover { background: var(--brand); border-color: var(--brand); }
.btn-contact-link:hover { color: var(--brand); }
.eyebrow, .eyebrow.dark, .eyebrow.light { color: #d7252e; }

/* Hero: controlled typography instead of oversized automatic wrapping. */
.hero-section {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 18%, rgba(167,25,31,.22), transparent 30%),
    radial-gradient(circle at 10% 92%, rgba(167,25,31,.10), transparent 25%),
    #050505;
}
.hero-section::before {
  opacity: .055;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,.7) 47%, rgba(255,255,255,.7) 48%, transparent 49%),
    linear-gradient(-45deg, transparent 46%, rgba(167,25,31,.95) 47%, rgba(167,25,31,.95) 48%, transparent 49%);
  background-size: 48px 48px;
}
.hero-orb { border-color: rgba(167,25,31,.34); }
.hero-container { padding-top: 128px; padding-bottom: 62px; }
.hero-copy { max-width: 720px; }
.hero-copy .hero-title {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(3.55rem, 5.9vw, 6.15rem);
  line-height: .91;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero-line { display: block; }
.hero-copy h1 em { color: #d7252e; font-style: italic; }
.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.72);
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}
.pakistan-tag {
  margin: 0 0 28px;
  border-color: rgba(215,37,46,.30);
  background: rgba(167,25,31,.10);
}
.pakistan-tag span { color: #f1f1f1; }
.pakistan-tag small { color: #d7252e; }
.stars { color: #d7252e; }
.hero-ring { border-color: rgba(215,37,46,.18); }
.hero-strip { background: #0b0b0b; border-top-color: rgba(255,255,255,.09); }
.strip-icon { color: #d7252e; }

/* Printed-menu inspired heading treatment. */
.section-heading h2,
.menu-title h2,
.story-section h2,
.review-section h2,
.contact-card h2 { text-wrap: balance; }
.signature-section { background: #fff; }
.signature-content > span { color: #ff5058; }

/* Menu uses the same black + red + white family as the supplied menu artwork. */
.menu-section {
  background: #070707;
  color: #fff;
}
.menu-section::before { color: rgba(255,255,255,.025); }
.menu-title .section-copy { color: rgba(255,255,255,.58); }
.menu-toolbar { align-items: flex-start; }
.menu-filter-scroll { flex: 1 1 auto; }
.filter-btn {
  border-color: rgba(255,255,255,.14);
  background: #151515;
  color: rgba(255,255,255,.78);
}
.filter-btn:hover { border-color: #d7252e; color: #fff; background: #1b1b1b; }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.menu-search { border-color: rgba(255,255,255,.14); background: #151515; }
.menu-search svg { color: rgba(255,255,255,.6); }
.menu-search input { color: #fff; }
.menu-search input::placeholder { color: rgba(255,255,255,.42); }

.menu-card-col { display: flex; }
.menu-card {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111;
  color: #fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.menu-card:hover { background: #151515; box-shadow: 0 24px 55px rgba(0,0,0,.42); }
.menu-image-wrap { background: #0a0a0a; }
.menu-badge { background: var(--brand); color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.menu-note { background: #050505; color: #fff; border: 1px solid rgba(255,255,255,.12); }
.menu-card-body {
  /* Keep this un-positioned so the absolute cart button anchors to .menu-card. */
  position: static;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-bottom: 74px;
}
.menu-card h3 { color: #fff; }
.menu-price { color: #ef333c; }
.menu-variant-label > span, .menu-meta { color: rgba(255,255,255,.45); }
.menu-variant-select {
  border-color: rgba(255,255,255,.14);
  background: #1a1a1a;
  color: #fff;
}
.menu-variant-select:focus { border-color: #d7252e; box-shadow: 0 0 0 3px rgba(167,25,31,.18); }
.menu-card-foot {
  min-height: 48px;
  margin-top: auto;
  padding-top: 14px;
  padding-right: 52px;
  border-top-color: rgba(255,255,255,.09);
}
.menu-meta span { max-width: 150px; }
/* Fixed-size cart action: always pinned to the card's bottom-right corner. */
.add-cart-btn {
  position: absolute !important;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  background: var(--brand);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 9px 22px rgba(0,0,0,.28);
  z-index: 2;
}
.add-cart-btn:hover { background: #d7252e; transform: translateY(-2px) scale(1.04); }
.menu-empty p { color: rgba(255,255,255,.55); }

.story-section, .site-footer, .review-section { background: #080808; }
.story-year { background: var(--brand); box-shadow: 0 20px 45px rgba(167,25,31,.25); }
.stat-box strong, .menu-story-kicker { color: #e52c35; }
.contact-card { background: #fff; }
.newsletter-section { background: #f1f1ef; }

@media (max-width: 991.98px) {
  .navbar-savoria, .navbar-collapse { background: rgba(5,5,5,.95); }
  .hero-copy .hero-title { max-width: 760px; margin-inline: auto; font-size: clamp(3.25rem, 8.5vw, 5.3rem); }
  .hero-lead { max-width: 700px; }
}

@media (max-width: 767.98px) {
  .hero-container { padding-top: 112px; padding-bottom: 28px; }
  .hero-copy .hero-title { font-size: clamp(2.9rem, 10.5vw, 4.15rem); line-height: .94; margin-bottom: 20px; }
  .hero-lead { font-size: .94rem; line-height: 1.65; }
  .menu-image-wrap { height: 180px; }
}

@media (max-width: 575.98px) {
  /* Every category is immediately visible: no horizontal carousel/scroll. */
  .menu-filter-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .filter-btn {
    width: 100%;
    min-height: 42px;
    padding: 8px 8px;
    white-space: normal;
    line-height: 1.15;
    font-size: .68rem;
    border-radius: 10px;
  }

  /* Two food cards on every phone row. */
  #menuGrid { --bs-gutter-x: 10px; --bs-gutter-y: 10px; }
  .menu-card { border-radius: 15px; }
  .menu-image-wrap { height: 122px; }
  .menu-badge {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 5px 7px;
    font-size: .5rem;
    line-height: 1.05;
    letter-spacing: .04em;
    white-space: normal;
  }
  .menu-note { top: 7px; right: 7px; height: 27px; min-width: 27px; font-size: .57rem; }
  .menu-card-body { padding: 12px 11px 59px; }
  .menu-card-head { display: block; }
  .menu-card h3 { font-size: .84rem; line-height: 1.18; min-height: 2.36em; }
  .menu-price { display: block; margin-top: 7px; text-align: left; font-size: .82rem; line-height: 1.2; white-space: normal; }
  .menu-variant-label { margin: 9px 0 5px; }
  .menu-variant-label > span { font-size: .52rem; margin-bottom: 4px; }
  .menu-variant-select { padding: 7px 23px 7px 7px; border-radius: 8px; font-size: .64rem; }
  .menu-card-spacer { min-height: 8px; }
  .menu-card-foot { min-height: 28px; padding-top: 8px; padding-right: 39px; }
  .menu-meta { font-size: .53rem; line-height: 1.1; }
  .menu-meta span { max-width: 92px; }
  .add-cart-btn {
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
  .add-cart-btn svg { width: 16px; height: 16px; }

  .hero-copy .hero-title { font-size: clamp(2.75rem, 13vw, 3.8rem); line-height: .93; }
  .hero-line { margin-bottom: .03em; }
  .pakistan-tag { width: fit-content; max-width: 100%; margin-inline: auto; }
}

@media (max-width: 380px) {
  .menu-image-wrap { height: 108px; }
  .menu-card h3 { font-size: .78rem; }
  .menu-card-body { padding-left: 9px; padding-right: 9px; }
  .filter-btn { font-size: .63rem; }
}
.hero-line-small { font-size: .72em; letter-spacing: -.035em; margin-top: .08em; }
@media (max-width: 575.98px) { .hero-line-small { font-size: .76em; } }


/* FINAL CART-BUTTON ANCHOR FIX — relative to the entire menu card. */
.menu-card { position: relative !important; display: flex !important; flex-direction: column !important; }
.menu-card-body { position: static !important; display: flex !important; flex: 1 1 auto !important; flex-direction: column !important; }
.menu-card-foot { margin-top: auto !important; }
.menu-card .add-cart-btn { position: absolute !important; right: 18px !important; bottom: 18px !important; margin: 0 !important; }
@media (max-width: 575.98px) {
  .menu-card .add-cart-btn { right: 10px !important; bottom: 10px !important; width: 34px !important; height: 34px !important; min-width: 34px !important; min-height: 34px !important; }
}

/* ============================================================
   MOBILE CATEGORY DROPDOWN
   Keep the menu compact on phones: six categories first, then
   reveal the rest from one full-width drop-down control.
   ============================================================ */
.filter-primary,
.filter-more-grid {
  display: contents;
}

.filter-more-toggle,
.filter-more-panel {
  display: none;
}

@media (max-width: 575.98px) {
  .menu-filter-scroll {
    display: block;
    width: 100%;
  }

  .filter-primary,
  .filter-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
  }

  .filter-more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-top: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;
    background: #a7191f;
    color: #fff;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 8px 22px rgba(167,25,31,.16);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }

  .filter-more-toggle:active {
    transform: scale(.985);
  }

  .filter-more-count {
    display: inline-grid;
    place-items: center;
    min-width: 27px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: .63rem;
    line-height: 1;
  }

  .filter-more-chevron {
    display: inline-block;
    margin-top: -3px;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform .28s ease;
  }

  .filter-more-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows .3s ease, opacity .22s ease, margin-top .3s ease;
    margin-top: 0;
  }

  .filter-more-panel > .filter-more-grid {
    min-height: 0;
    overflow: hidden;
  }

  .menu-filter-scroll.filters-expanded .filter-more-panel {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 7px;
  }

  .menu-filter-scroll.filters-expanded .filter-more-chevron {
    transform: rotate(180deg);
  }

  .menu-filter-scroll.filters-expanded .filter-more-toggle {
    background: #151515;
    border-color: rgba(255,255,255,.24);
  }
}

/* ============================================================
   FLOATING CART — fixed to viewport bottom-left, never in navbar
   ============================================================ */
.floating-cart-trigger {
  position: fixed !important;
  left: 18px !important;
  right: auto !important;
  bottom: calc(18px + env(safe-area-inset-bottom)) !important;
  top: auto !important;
  z-index: 1035;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.14);
  background: #fff;
  color: #080808;
  box-shadow: 0 14px 36px rgba(0,0,0,.34);
}
.floating-cart-trigger:hover,
.floating-cart-trigger:focus-visible {
  background: #b71922;
  color: #fff;
  transform: translateY(-2px);
}
.floating-cart-trigger svg {
  width: 23px;
  height: 23px;
}
.floating-cart-trigger .cart-count {
  top: -5px;
  right: -5px;
  border-color: #080808;
  background: #b71922;
  color: #fff;
}

/* ============================================================
   CLEAN MOBILE CATEGORY EXPANDER — no chevron/arrow glyph
   ============================================================ */
@media (max-width: 575.98px) {
  .filter-more-toggle {
    justify-content: flex-start;
    min-height: 42px;
    padding: 9px 12px 9px 14px;
    gap: 7px;
  }

  .filter-more-label {
    flex: 1 1 auto;
    text-align: left;
  }

  .filter-more-count {
    min-width: 0;
    height: 22px;
    padding: 0 8px;
    white-space: nowrap;
  }

  .filter-more-chevron {
    display: none !important;
  }

  .filter-more-icon {
    position: relative;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
  }
  .filter-more-icon::before,
  .filter-more-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .22s ease;
  }
  .filter-more-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .menu-filter-scroll.filters-expanded .filter-more-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-filter-scroll.filters-expanded .filter-more-count {
    display: none;
  }

  .floating-cart-trigger {
    left: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }
}

/* ============================================================
   PHP LIVE MENU / DEALS / DESKTOP CATEGORY VISIBILITY
   ============================================================ */
@media (min-width: 576px) {
  .menu-filter-scroll { display:flex !important; flex-wrap:wrap !important; overflow:visible !important; align-items:center; gap:8px; }
  .filter-primary { display:contents !important; }
  .filter-more-toggle { display:none !important; }
  .filter-more-panel { display:contents !important; opacity:1 !important; overflow:visible !important; }
  .filter-more-grid { display:contents !important; }
}
.menu-loading,.menu-load-error{min-height:210px;border:1px solid rgba(255,255,255,.1);border-radius:22px;background:#101010;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;color:#aaa;text-align:center;padding:30px}.menu-loading span{width:34px;height:34px;border:3px solid #2d2d2d;border-top-color:#c51f29;border-radius:50%;animation:menuSpin .8s linear infinite}.menu-loading strong,.menu-load-error strong{color:#fff;font-size:1.08rem}.menu-load-error span{display:block}.menu-single-variant{display:inline-flex;align-items:center;padding:6px 9px;background:#191919;border:1px solid #2b2b2b;border-radius:999px;color:#999;font-size:.72rem}.menu-description{font-size:.78rem;line-height:1.45;color:#8b8b8b;margin:9px 0 0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}@keyframes menuSpin{to{transform:rotate(360deg)}}
.live-deals-section{background:#f5eee4}.deal-card{height:100%;background:#0c0c0c;border:1px solid #262626;border-radius:24px;overflow:hidden;color:#fff;box-shadow:0 24px 54px rgba(0,0,0,.12);transition:transform .3s ease,box-shadow .3s ease}.deal-card:hover{transform:translateY(-6px);box-shadow:0 30px 68px rgba(0,0,0,.2)}.deal-image{height:250px;position:relative;background:radial-gradient(circle at 50% 40%,#2d1d16,#100b09 72%);overflow:hidden}.deal-image img{width:100%;height:100%;object-fit:contain;padding:12px;transition:transform .35s ease}.deal-card:hover .deal-image img{transform:scale(1.04)}.deal-image span{position:absolute;top:18px;left:18px;background:#c51f29;padding:8px 12px;border-radius:999px;font-size:.68rem;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.deal-body{padding:20px;display:flex;flex-direction:column;gap:18px;height:calc(100% - 250px)}.deal-body h3{font-family:Georgia,serif;font-size:1.55rem;margin:0 0 8px}.deal-body p{color:#919191;line-height:1.55;margin:0}.deal-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:auto}.deal-bottom strong{display:block;color:#ff3d47;font-size:1.3rem}.deal-bottom del{display:block;color:#626262;font-size:.78rem;margin-top:2px}.deal-add{border:1px solid #402124;background:#c51f29;color:#fff;border-radius:12px;padding:10px 12px;font-size:.77rem;font-weight:900;display:flex;align-items:center;gap:7px}.deal-add svg{width:16px;height:16px}.cart-footer #cartDeliveryFee{font-size:.78rem;color:#8e8e8e}.cart-footer .btn svg{width:17px;height:17px}
@media(max-width:575.98px){.deal-image{height:210px}.deal-body{height:auto}.menu-description{display:none}}


/* ============================================================
   CART OFFCANVAS NAVBAR CLEARANCE — v2
   The sticky/fixed navbar has a higher z-index than Bootstrap's
   offcanvas. Keep the entire cart panel, especially its close
   button, physically below the current navbar height. JS updates
   --cart-top-offset from the real rendered navbar height.
   ============================================================ */
.cart-canvas {
  top: var(--cart-top-offset, 78px) !important;
  bottom: 0 !important;
  height: auto !important;
  max-height: calc(100dvh - var(--cart-top-offset, 78px)) !important;
  border-top-left-radius: 20px;
  overflow: hidden;
}
.cart-canvas .cart-header {
  flex: 0 0 auto;
  background: #fffaf3;
  position: sticky;
  top: 0;
  z-index: 3;
}
.cart-canvas .offcanvas-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .cart-canvas {
    top: var(--cart-top-offset, 70px) !important;
    max-height: calc(100dvh - var(--cart-top-offset, 70px)) !important;
    border-top-left-radius: 16px;
  }
  .cart-canvas .cart-header { padding-top: 18px; }
}

/* ============================================================
   MOBILE HORIZONTAL-OVERFLOW HARDENING — safe update v4
   Prevents the page from being dragged sideways into blank white space.
   The earlier stylesheet hid overflow only on body; on mobile browsers the
   root html element can still become horizontally scrollable when transformed
   reveal elements, large hero art, or Bootstrap offcanvas geometry extend the
   visual viewport.
   ============================================================ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
}
@supports (overflow: clip) {
  html,
  body { overflow-x: clip !important; }
}
body { position: relative; }

/* Never allow full-page sections or fixed UI to establish a wider scroll area. */
#mainContent,
.navbar-savoria,
.hero-section,
.signature-section,
.live-deals-section,
.menu-section,
.story-section,
.service-band,
.gallery-section,
.review-section,
.contact-section,
.newsletter-section,
.site-footer {
  max-width: 100%;
}
.navbar-savoria {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}
.cart-canvas {
  width: min(470px, 100%) !important;
  max-width: 100vw !important;
}

@media (max-width: 575.98px) {
  /* The old 108% hero stage intentionally bled outside the container. On real
     phones that can create a horizontal root scroll area, so keep it inside. */
  .dish-stage {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-visual-wrap,
  .hero-container,
  .menu-toolbar,
  .menu-filter-scroll,
  .filter-primary,
  .filter-more-panel,
  .filter-more-grid,
  #menuGrid,
  .gallery-grid,
  .story-collage {
    max-width: 100%;
    min-width: 0;
  }

  .menu-filter-scroll,
  .filter-more-panel,
  .filter-more-grid {
    overflow-x: hidden !important;
  }

  .filter-btn,
  .menu-card,
  .menu-card-body,
  .menu-card-foot,
  .deal-card {
    min-width: 0;
  }

  /* Horizontal reveal transforms can temporarily expand the browser's root
     scrollable area before IntersectionObserver reveals them. Use a vertical
     reveal on phones instead; the animation remains smooth without side pan. */
  .reveal-left,
  .reveal-right {
    transform: translateY(26px);
  }
  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: none;
  }

  /* Decorative oversized pseudo-elements are clipped to their sections. */
  .menu-section,
  .contact-section,
  .signature-section,
  .gallery-section,
  .review-section,
  .newsletter-section {
    overflow-x: clip;
  }
}

/* Website logo support v8 */
.site-logo-img{display:block;width:auto;height:46px;max-width:86px;object-fit:contain;flex:0 0 auto;filter:drop-shadow(0 8px 16px rgba(0,0,0,.18))}.navbar-savoria.scrolled .site-logo-img{height:40px}.footer-logo-img{height:58px;max-width:110px}.brand-mark:has(.site-logo-img){gap:12px}@media(max-width:991.98px){.site-logo-img{height:40px;max-width:74px}.navbar-savoria.scrolled .site-logo-img{height:38px}}@media(max-width:575.98px){.site-logo-img{height:36px;max-width:62px}.footer-logo-img{height:48px;max-width:88px}}

/* ================================================================
   KAFE NAWAB HERO LOGO VISIBILITY PATCH
   Hide only the code-generated "Live Karahi" floating badge so it
   can never cover branding contained inside the hero image.
   The lower "Nawabi Specials" badge and all other hero styling remain.
   ================================================================ */
.hero-section .floating-badge.badge-top {
  display: none !important;
}
