/* ============================================================
   MALVANI GAJALEE — Landing Page Styles
   Palette: Malvani maroon, Konkan gold, coconut cream
   ============================================================ */

:root {
  --maroon:      #6b1414;
  --maroon-deep: #4d0d0d;
  --terracotta:  #b8412e;
  --gold:        #d4a04c;
  --gold-soft:   #e8c987;
  --cream:       #fdf6ec;
  --cream-2:     #f6ead7;
  --ink:         #2a1715;
  --ink-soft:    #5c4a44;
  --green:       #2f5d50;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-head:    "Marcellus", Georgia, serif;
  --ff-body:    "Poppins", system-ui, sans-serif;

  --radius: 16px;
  --shadow: 0 18px 50px -18px rgba(43, 23, 21, 0.45);
  --shadow-sm: 0 10px 30px -14px rgba(43, 23, 21, 0.4);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared bits ---------- */
.kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 2.4rem;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.kicker--light { color: var(--gold-soft); }
.kicker--light::before { background: var(--gold-soft); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0.5px;
  color: var(--maroon);
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold-soft); }

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-lead {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--maroon-deep);
  box-shadow: 0 12px 28px -12px rgba(212, 160, 76, 0.8);
}
.btn--maroon { background: var(--maroon); color: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 246, 236, 0.55);
}
.btn--ghost:hover { background: rgba(253, 246, 236, 0.12); border-color: var(--cream); }
.btn:hover { transform: translateY(-3px); }
.btn--gold:hover { box-shadow: 0 18px 36px -12px rgba(212, 160, 76, 0.95); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--maroon-deep);
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar__sep { opacity: 0.5; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 20, 20, 0.08);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(43, 23, 21, 0.5); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px -4px rgba(107,20,20,0.35);
}
.brand__logo--footer {
  height: 58px;
  width: 58px;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.5);
}
.brand__mark {
  font-size: 1.7rem;
  filter: drop-shadow(0 2px 6px rgba(107,20,20,0.25));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--ff-head);
  font-size: 1.32rem;
  color: var(--maroon);
  letter-spacing: 0.5px;
}
.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a:not(.btn) {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.25s;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--maroon); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 0.6rem 1.3rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 100%), var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40,10,10,0.55) 0%, rgba(40,10,10,0.25) 35%, rgba(40,10,10,0.85) 100%),
    radial-gradient(120% 80% at 15% 20%, rgba(0,0,0,0.35), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--ff-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.4);
  max-width: 14ch;
}
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__sub {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: 1.12rem;
  color: rgba(253, 246, 236, 0.92);
}
.hero__actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges {
  margin-top: 3rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.badge { display: flex; flex-direction: column; }
.badge strong {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--gold-soft);
  line-height: 1;
}
.badge span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.8);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(253,246,236,0.6);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-soft);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--maroon);
  color: var(--cream);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(212,160,76,0.1), transparent 60%),
    var(--cream);
  padding: 6rem 1.5rem;
}
.story__inner { max-width: var(--maxw); margin: 0 auto; }
.story__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 1rem;
}
.story__lines p {
  font-size: 1.16rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  max-width: 52ch;
}
.story__lines .hl {
  color: var(--maroon);
  font-weight: 500;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.28rem;
}
.story__close {
  font-family: var(--ff-display);
  font-size: 1.45rem !important;
  color: var(--maroon) !important;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin-top: 2rem;
}
.story__quote {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
  color: var(--cream);
  padding: 2.8rem 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.story__quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--ff-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.5;
}
.story__quote blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
}
.story__quote figcaption {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Menu / Specialties ---------- */
.menu {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.dish {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,20,20,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dish__img {
  height: 200px;
  background-image: var(--img), url('/images/dishes.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--gold-soft);
  transition: transform 0.6s var(--ease);
}
.dish:hover .dish__img { transform: scale(1.06); }
.dish__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.dish__top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; }
.dish__top h3 {
  font-family: var(--ff-head);
  font-size: 1.12rem;
  color: var(--maroon);
  line-height: 1.2;
}
.dish__price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--terracotta);
  white-space: nowrap;
}
.dish__body p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.dish__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
}
.tag--veg { background: rgba(47,93,80,0.12); color: var(--green); }
.tag--spicy { background: rgba(184,65,46,0.14); color: var(--terracotta); }
.menu__cta { text-align: center; margin-top: 3rem; }

/* ---------- Values ---------- */
.values {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
  color: var(--cream);
  padding: 4.5rem 1.5rem;
}
.values__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value { text-align: center; padding: 0 0.5rem; }
.value__ico {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.value h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}
.value p { font-size: 0.9rem; color: rgba(253,246,236,0.82); }

/* ---------- Full Menu Section ---------- */
.full-menu {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #2b0808 100%);
  color: var(--cream);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.full-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(212,160,76,0.08), transparent 70%);
  pointer-events: none;
}
.full-menu__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.full-menu__desc {
  font-size: 1.05rem;
  color: rgba(253, 246, 236, 0.85);
  margin: 1.2rem auto 2.5rem;
  line-height: 1.7;
}
.full-menu__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Chef ---------- */
.chef { padding: 6rem 1.5rem; background: var(--cream); }
.chef__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.chef__media { position: relative; }
.chef__photo {
  height: 460px;
  border-radius: var(--radius);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.chef__sticker {
  position: absolute;
  bottom: -22px; right: -10px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-family: var(--ff-head);
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
}
.chef__content p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.04rem; }
.chef__quote {
  margin-top: 1.6rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--maroon);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}

/* ---------- Gallery ---------- */
.gallery { padding: 6rem 1.5rem; background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.g-item {
  border-radius: var(--radius);
  background-image: linear-gradient(135deg, rgba(107,20,20,0.1), rgba(40,10,10,0.25)), var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(40,10,10,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.g-item:hover { transform: scale(1.02); }
.g-item:hover::after { opacity: 1; }
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  padding: 6rem 1.5rem;
  background:
    linear-gradient(155deg, rgba(40,10,10,0.92), rgba(77,13,13,0.92)),
    radial-gradient(70% 60% at 80% 10%, rgba(212,160,76,0.25), transparent 60%);
  color: var(--cream);
}
.reserve__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.reserve__lead { color: rgba(253,246,236,0.85); margin-top: 1rem; max-width: 44ch; }
.reserve__contact { list-style: none; margin-top: 2rem; display: grid; gap: 0.9rem; }
.reserve__contact li { display: flex; align-items: center; gap: 0.8rem; font-size: 1.02rem; }
.reserve__contact span { font-size: 1.2rem; }
.reserve__contact a:hover { color: var(--gold-soft); }

.reserve__form {
  background: rgba(253, 246, 236, 0.97);
  color: var(--ink);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}
.field label small { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(107,20,20,0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,76,0.22);
}
.form-note {
  margin-top: 1rem;
  text-align: center;
  color: var(--green);
  font-weight: 500;
  background: rgba(47,93,80,0.1);
  padding: 0.7rem;
  border-radius: 10px;
}

/* ---------- Footer ---------- */
.footer { background: var(--maroon-deep); color: rgba(253,246,236,0.82); }
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}
.brand--footer .brand__name { color: var(--gold-soft); }
.brand--footer .brand__tag { color: rgba(253,246,236,0.6); }
.footer__about { margin-top: 1.2rem; font-size: 0.92rem; max-width: 36ch; }
.footer__col h5 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
  letter-spacing: 0.03em;
}
.footer__h5--mt { margin-top: 1.4rem; }
.footer__col p { font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer__social a { font-size: 0.88rem; }
.footer__map iframe {
  width: 100%; height: 180px;
  border: 0; border-radius: 12px;
  filter: grayscale(0.2) contrast(1.05);
}
.footer__bottom {
  border-top: 1px solid rgba(253,246,236,0.12);
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
  font-size: 0.82rem;
}
.footer__credit { color: var(--gold-soft); font-family: var(--ff-display); font-style: italic; font-size: 1rem; }

/* ---------- Floating action button ---------- */
.fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  background: var(--gold);
  color: var(--maroon-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(212,160,76,0.9);
  transform: translateY(120px);
  transition: transform 0.4s var(--ease);
}
.fab.show { transform: translateY(0); }
.fab:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .story__grid, .chef__inner, .reserve__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .values__inner { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .g-item--wide { grid-column: span 2; }
  .g-item--tall { grid-row: span 1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .chef__photo { height: 380px; }
}

@media (max-width: 720px) {
  /* backdrop-filter makes .nav the containing block for the fixed drawer,
     which widens the page while the drawer is off-screen. Use a solid
     background on mobile instead so the drawer anchors to the viewport. */
  .nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(253, 246, 236, 0.97);
  }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.1rem;
    background: var(--cream);
    padding: 5.5rem 1.8rem 2rem;
    box-shadow: -20px 0 60px -20px rgba(43,23,21,0.5);
    transform: translateX(100%);
    /* visibility:hidden while closed so the off-screen drawer creates NO
       horizontal overflow (it was widening the page and shrinking the mobile UI) */
    visibility: hidden;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
  }
  .nav.open .nav__links {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s var(--ease), visibility 0s;
  }
  .nav__toggle { display: flex; z-index: 1001; }
  .nav__links a:not(.btn) {
    width: 100%;
    font-size: 1.02rem;
    padding: 0.55rem 0.1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(107, 20, 20, 0.08);
  }
  .nav__links .nav__cta { width: 100%; justify-content: center; margin-top: 0.8rem; }
  .hero__badges { gap: 1.6rem; }
  .topbar__inner { font-size: 0.68rem; }
}

@media (max-width: 560px) {
  .menu__grid, .values__inner, .gallery__grid, .footer__top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .g-item--wide { grid-column: span 1; }
  .hero__content { padding-top: 5rem; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FLOATING RESERVATION STATUS WIDGET
   ============================================================ */
.booking-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 340px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  box-shadow: 0 30px 80px -15px rgba(43, 23, 21, 0.38);
  border-top: 4px solid var(--gold);
  z-index: 999;
  padding: 1.4rem;
  animation: widgetSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  font-family: var(--ff-body);
}

@keyframes widgetSlideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.booking-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(43, 23, 21, 0.1);
  padding-bottom: 0.5rem;
}

.booking-widget__header h4 {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.booking-widget__close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 0.7;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
}

.booking-widget__close:hover {
  color: var(--terracotta);
}

.booking-widget__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.booking-widget__id {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.booking-widget__id strong {
  color: var(--ink);
  font-weight: 600;
}

/* Premium Animated Checkmark SVG */
.booking-widget__tick-container {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0;
  animation: scaleIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.checkmark-svg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: var(--green);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--green);
  animation: fillCircle .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: var(--green);
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 4;
  stroke: var(--green);
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}
@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}
@keyframes fillCircle {
  100% { box-shadow: inset 0px 0px 0px 30px rgba(232, 248, 245, 0.8); }
}

.booking-widget__status-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge--pending {
  background: #fef9e7;
  color: #b7950b;
}

.status-badge--approved {
  background: #e8f8f5;
  color: #117864;
}

.status-badge--disapproved {
  background: #fceae9;
  color: #b8412e;
}

.widget-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 0.3rem;
  border-top: 1px dashed rgba(43, 23, 21, 0.08);
  padding-top: 0.6rem;
}

.widget-note strong {
  color: var(--maroon);
  font-weight: 600;
}

@media (max-width: 480px) {
  .booking-widget {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    padding: 1.1rem;
    border-radius: 14px;
    box-shadow: 0 10px 40px -10px rgba(43, 23, 21, 0.35);
  }
}

/* ============================================================
   ONLINE ORDERING & RESERVATION — NEW STYLES
   ============================================================ */

/* Menu Page Styles */
.menu-page {
  padding: 3rem 1.5rem 6rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.menu-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #fff;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,20,20,0.06);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border: 1.5px solid rgba(107, 20, 20, 0.18);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 76, 0.2);
}

.search-box::before {
  content: "🔍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  opacity: 0.6;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Veg Toggle Switch */
.toggle-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.toggle-switch {
  position: relative;
  width: 46px;
  height: 24px;
  background: #ccc;
  border-radius: 20px;
  transition: background 0.3s;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-container input {
  display: none;
}

.toggle-container input:checked + .toggle-switch {
  background: var(--green);
}

.toggle-container input:checked + .toggle-switch::after {
  transform: translateX(22px);
}

/* Category Navigation (Sticky Chips) */
.category-nav {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: var(--cream);
  padding: 1rem 0;
  margin-bottom: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(107, 20, 20, 0.08);
  scrollbar-width: none; /* Hide standard scrollbar Firefox */
}

.category-nav::-webkit-scrollbar {
  display: none; /* Hide standard scrollbar Chrome/Safari */
}

.cat-chip {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(107, 20, 20, 0.1);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.cat-chip:hover {
  background: var(--cream-2);
  border-color: var(--gold);
}

.cat-chip.active {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  box-shadow: var(--shadow-sm);
}

/* Stepper Stepping controls */
.stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--maroon);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  width: fit-content;
}

.stepper-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stepper-btn:hover {
  background: var(--cream-2);
}

.stepper-val {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.dish__add-btn {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
}

/* Unavailable dish modifier */
.dish--unavailable {
  opacity: 0.55;
  filter: grayscale(0.5);
}

.dish--unavailable .dish__img::after {
  content: "Unavailable";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Category Sections */
.menu-section {
  margin-bottom: 4rem;
}

.menu-section__title {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  padding-left: 0.8rem;
}

/* Floating Cart status Bar */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--cream);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  border-top: 3px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-bar.show {
  transform: translateY(0);
}

.cart-bar__details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-bar__icon {
  font-size: 1.5rem;
  position: relative;
}

.cart-bar__count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 0.72rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-bar__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Checkout page styles */
.checkout-container {
  max-width: var(--maxw);
  margin: 3rem auto 6rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.checkout-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 20, 20, 0.06);
  padding: 2.2rem;
}

.checkout-title {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--cream-2);
  padding-bottom: 0.8rem;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(107, 20, 20, 0.08);
  padding-bottom: 0.8rem;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item__info h4 {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.cart-item__info p {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Mode selectors tabs */
.mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-2);
  border-radius: 10px;
  padding: 0.3rem;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
}

.mode-tab {
  border: none;
  background: none;
  padding: 0.7rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink-soft);
}

.mode-tab.active {
  background: #fff;
  color: var(--maroon);
  box-shadow: 0 4px 10px rgba(107, 20, 20, 0.06);
}

.pay-note {
  background: #fbf0e3;
  border-left: 4px solid var(--gold);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--maroon-deep);
  margin: 1.5rem 0;
  line-height: 1.5;
}

/* Confirmation Page */
.confirm-page {
  padding: 5rem 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.confirm-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(107, 20, 20, 0.06);
  padding: 3rem 2.5rem;
  text-align: center;
}

.confirm-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounceCheck 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceCheck {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.confirm-title {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.ref-num {
  font-size: 1.15rem;
  background: var(--cream-2);
  color: var(--maroon-deep);
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.8rem 0 1.8rem;
  letter-spacing: 0.05em;
}

.confirm-banner {
  background: var(--maroon);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1.2rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
  margin: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.confirm-details {
  text-align: left;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.confirm-details h3 {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 20, 20, 0.1);
  padding-bottom: 0.5rem;
}

.confirm-details__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.confirm-details__row:last-child {
  margin-bottom: 0;
}

.confirm-details__label {
  color: var(--ink-soft);
  font-weight: 500;
}

.confirm-details__val {
  color: var(--ink);
  font-weight: 600;
}

.confirm-items {
  margin-top: 1rem;
  border-top: 1px dashed rgba(107, 20, 20, 0.15);
  padding-top: 1rem;
}

.confirm-item-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.6);
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 15px 30px -8px rgba(37, 211, 102, 0.8);
}

.btn-back-home {
  margin-top: 1.2rem;
}

/* Admin Dashboard Specific Tabs styling */
.admin-tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--cream-2);
  padding-bottom: 0.5rem;
  overflow-x: auto;
}

.admin-tab-btn {
  border: none;
  background: none;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s;
  white-space: nowrap;
}

.admin-tab-btn:hover {
  background: var(--cream-2);
  color: var(--maroon);
}

.admin-tab-btn.active {
  background: var(--maroon);
  color: var(--cream);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Live Orders Pipeline Board */
.orders-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.orders-column {
  background: var(--cream-2);
  padding: 1.2rem;
  border-radius: 14px;
  min-height: 500px;
}

.orders-column h3 {
  font-family: var(--ff-head);
  color: var(--maroon);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid rgba(107, 20, 20, 0.1);
  padding-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orders-column__badge {
  background: var(--maroon);
  color: var(--cream);
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.1rem;
  box-shadow: 0 4px 12px rgba(43, 23, 21, 0.04);
  border-left: 4px solid var(--gold);
}

.order-card--dine-in {
  border-left-color: var(--maroon);
}

.order-card--takeaway {
  border-left-color: var(--green);
}

.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.order-card__id {
  font-weight: 700;
  font-size: 0.85rem;
}

.order-card__mode {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.order-card__mode--dine-in {
  background: rgba(107, 20, 20, 0.1);
  color: var(--maroon);
}

.order-card__mode--takeaway {
  background: rgba(47, 93, 80, 0.1);
  color: var(--green);
}

.order-card__details {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.order-card__items {
  background: var(--cream);
  padding: 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.order-card__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.order-card__item:last-child {
  margin-bottom: 0;
}

.order-card__actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.order-card__btn {
  flex: 1;
  padding: 0.4rem 0;
  font-size: 0.72rem;
  text-align: center;
  border-radius: 4px;
}

/* Tables Admin tab Grid styles */
.tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.table-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,20,20,0.06);
  text-align: center;
  position: relative;
}

.table-card__number {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 0.3rem;
}

.table-card__capacity {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.table-card__type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--cream-2);
  color: var(--maroon-deep);
  font-weight: 600;
}

.table-card__status {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.table-card__status--free {
  color: var(--green);
}

.table-card__status--reserved {
  color: var(--terracotta);
}

/* Add Table Form */
.admin-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* Menu items CRUD styling */
.admin-menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.admin-menu-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-menu-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-menu-card__info {
  flex: 1;
  min-width: 200px;
}

.admin-menu-card__info h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 0.3rem;
}

.admin-menu-card__info p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.admin-menu-card__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Status Badge mapping */
.status-badge--new { background: #e8f4fd; color: #1d88e5; }
.status-badge--preparing { background: #fff3cd; color: #856404; }
.status-badge--ready { background: #d4edda; color: #155724; }
.status-badge--completed { background: #e8f8f5; color: #117864; }
.status-badge--cancelled { background: #f8d7da; color: #721c24; }

/* Responsive tweaks for checkout */
@media (max-width: 980px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-controls {
    justify-content: space-between;
  }
  .category-nav {
    top: 70px;
  }
}





/* ============================================================
   AMBIANCE SECTION (homepage)
   ============================================================ */
.ambiance__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.amb-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,20,20,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  margin: 0;
}
.amb-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.amb-card__img {
  height: 320px;
  background-image: linear-gradient(180deg, rgba(40,10,10,0.05), rgba(40,10,10,0.18)), var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.amb-card:hover .amb-card__img { transform: scale(1.05); }
.amb-card figcaption { padding: 1.2rem 1.3rem 1.4rem; }
.amb-card figcaption h3 {
  font-family: var(--ff-head);
  font-size: 1.12rem;
  color: var(--maroon);
  margin-bottom: 0.35rem;
}
.amb-card figcaption p { font-size: 0.9rem; color: var(--ink-soft); }
.ambiance__quote {
  text-align: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--maroon);
  margin: 2.6rem auto 0;
  max-width: 34ch;
}
@media (max-width: 980px) {
  .ambiance__grid { grid-template-columns: 1fr; max-width: 560px; }
  .amb-card__img { height: 260px; }
}
