/* =================================================================
   Chowminoz - stylesheet (v2)
   Theme: deep matte black + golden-yellow accents.
   Inspired directly by the printed visiting card / menu cover.
   No build step - drop and serve.
================================================================= */

:root {
  /* Brand */
  --gold:        #f5c518;   /* primary brand gold */
  --gold-2:      #ffd24a;   /* lighter highlight */
  --gold-deep:   #c99a00;   /* deeper accent / hover */
  --primary:     #f5c518;   /* alias used across components */
  --primary-dark:#c99a00;
  --secondary:   #ffd24a;
  --accent:      #ffd24a;

  /* Dark surfaces */
  --bg:          #0d0d0d;
  --bg-alt:      #161616;
  --surface:     #1c1c1c;
  --surface-2:   #232323;
  --border:      #2a2a2a;

  /* Text */
  --text:        #f5f5f5;
  --text-muted:  #9a9a9a;
  --text-soft:   #c4c4c4;

  /* State */
  --veg:         #4ade80;
  --nonveg:      #ef4444;

  /* Effects */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 18px 50px rgba(0, 0, 0, 0.6);
  --glow-gold:   0 0 0 1px rgba(245, 197, 24, 0.25), 0 10px 30px rgba(245, 197, 24, 0.18);

  /* Sizing */
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --max-w:       1200px;
  --header-h:    64px;

  /* Type */
  --font-display:"Pacifico", cursive;
  --font:        "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(800px 500px at 88% -10%, rgba(245, 197, 24, 0.08), transparent 60%),
    radial-gradient(700px 500px at -10% 25%, rgba(245, 197, 24, 0.05), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { padding: 0; margin: 0; list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hidden { display: none !important; }
.muted  { color: var(--text-muted); }
.small  { font-size: 0.875rem; }
.center { text-align: center; }
.block  { display: block; width: 100%; }
.hide-sm { display: inline-flex; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease,
              border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  white-space: nowrap;
  font-family: inherit;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1300;
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(245, 197, 24, 0.5); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(245, 197, 24, 0.1); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  position: relative;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 14px 26px; font-size: 1rem; min-height: 52px; }

.btn-swiggy { background: #fc8019; color: #fff; }
.btn-swiggy:hover { background: #e8730f; }
.btn-zomato { background: #e23744; color: #fff; }
.btn-zomato:hover { background: #c52d39; }
.btn-whatsapp { background: #25d366; color: #04241b; }
.btn-whatsapp:hover { background: #1fbe5a; }

.icon-btn {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  display: grid;
  place-items: center;
}
.icon-btn:hover { background: var(--surface-2); color: var(--gold); }

/* ---------------- Brand mark ---------------- */
.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand:hover { text-decoration: none; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

/* ---------------- Navbar ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.2s;
}
.nav-links a:hover {
  text-decoration: none;
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Yellow paint-stroke decorative accent (echoes the brushstroke on the menu cover) */
.brush {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}
.brush svg { display: block; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid rgba(245, 197, 24, 0.25);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}
.accent {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta > div {
  display: flex; flex-direction: column;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.hero-meta strong {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}
.hero-meta span { color: var(--text-muted); font-size: 0.85rem; }

.hero-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(245, 197, 24, 0.2);
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-card:hover .hero-card-img img { transform: scale(1.05); }
.hero-card-body { padding: 18px 20px 22px; }
.pop-pill {
  display: inline-block;
  background: rgba(245, 197, 24, 0.18);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(245, 197, 24, 0.25);
}
.hero-card h3 { margin: 0 0 6px; font-size: 1.25rem; color: var(--text); }
.hero-card p { margin: 0 0 18px; color: var(--text-muted); font-size: 0.95rem; }
.hero-card-row { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 800; font-size: 1.2rem; color: var(--gold); }

/* ---------------- Sections ---------------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 32px; }
.section-head .kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 10px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-head p { color: var(--text-soft); margin: 0; max-width: 640px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------------- Order strip ---------------- */
.order-strip { padding: 60px 0; }
.order-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.order-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 90px;
}
.order-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
  text-decoration: none;
  border-color: var(--gold);
}
.order-card .order-logo {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  background: var(--surface-2);
  color: var(--gold);
  flex-shrink: 0;
}
.order-card.swiggy .order-logo { background: rgba(252, 128, 25, 0.12); color: #fc8019; }
.order-card.zomato .order-logo { background: rgba(226, 55, 68, 0.12); color: #ff5b6a; }
.order-card.phone  .order-logo { background: rgba(74, 222, 128, 0.12); color: #4ade80; }
.order-card h3 { margin: 0 0 3px; font-size: 1.05rem; color: var(--text); }
.order-card p  { margin: 0; color: var(--text-muted); font-size: 0.85rem; }
.order-card .arrow { margin-left: auto; font-size: 1.4rem; color: var(--gold); }

/* ---------------- Menu ---------------- */
.menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search { position: relative; flex: 1; max-width: 480px; }
.search input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: var(--surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>") no-repeat 14px center;
  background-size: 18px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  color: var(--text);
  outline: none;
  min-height: 48px;
}
.search input::placeholder { color: var(--text-muted); }
.search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2); }

.chip-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  user-select: none;
  color: var(--text);
  min-height: 48px;
}
.chip-toggle input { accent-color: var(--veg); }
.chip-toggle:has(input:checked) {
  border-color: var(--veg);
  background: rgba(74, 222, 128, 0.1);
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.category-tabs::-webkit-scrollbar { height: 6px; }
.category-tabs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: 0.18s;
  color: var(--text-soft);
  font-family: inherit;
  min-height: 44px;
  scroll-snap-align: start;
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active {
  background: var(--gold);
  color: #1a1300;
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
}

.menu-grid { display: flex; flex-direction: column; gap: 22px; }

/* Menu list  clean text-only rows, no images */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-head {
  margin: 18px 0 0;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 12px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.sub-head::after {
  content: "";
  display: block;
  height: 1px; flex: 1;
  background: linear-gradient(to right, rgba(245, 197, 24, 0.4), transparent);
}
.menu-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
}

.menu-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.menu-row:hover {
  border-color: rgba(245, 197, 24, 0.4);
  background: var(--surface-2);
  transform: translateX(2px);
}

.veg-dot {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 4px;
  border: 2px solid var(--veg);
  background: transparent;
  display: grid; place-items: center;
  border-radius: 4px;
}
.veg-dot::after {
  content: "";
  width: 7px; height: 7px;
  background: var(--veg);
  border-radius: 50%;
}
.veg-dot.nv { border-color: var(--nonveg); }
.veg-dot.nv::after {
  background: var(--nonveg);
  border-radius: 0;
  transform: rotate(45deg);
  width: 7px; height: 7px;
}

.row-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.row-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.row-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Inline pills used inside row titles */
.popular-badge {
  background: var(--gold);
  color: #1a1300;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}
.size-badge {
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(245, 197, 24, 0.35);
  white-space: nowrap;
}

/* ---------------- Reviews / Map ---------------- */
.map-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-iframe { min-height: 380px; background: var(--surface-2); }
.map-iframe iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg); }
.map-side {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
}
.rating-block { text-align: center; padding: 10px 0; }
.rating-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}
.rating-num span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.rating-stars {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.rating-block p { color: var(--text-muted); margin: 8px 0 0; font-size: 0.9rem; }

.map-actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Customer reviews summary + grid ---------- */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.reviews-summary .rating-block { text-align: left; padding: 0; display: flex; align-items: center; gap: 18px; }
.reviews-summary .rating-num { font-size: 2.6rem; }
.reviews-summary .rating-stars { font-size: 1.3rem; margin-top: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  min-width: 0;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--glow-gold);
}

.review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.review-head h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.review-head .small { font-size: 0.78rem; margin: 2px 0 0; }

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1300;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.25);
}

.rating-pill {
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.rating-pill .muted { color: var(--text-muted); font-weight: 500; margin-left: 2px; }

.review-text {
  margin: 0;
  color: var(--text-soft);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.muted.small { font-size: 0.82rem; color: var(--text-muted); }
.center { text-align: center; }

/* ---------------- Contact + Feedback ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.info-row { display: flex; gap: 14px; }
.info-icon {
  width: 46px; height: 46px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--gold);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-row strong { color: var(--text); }
.info-row p { margin: 4px 0 0; color: var(--text-muted); font-size: 0.95rem; }
.info-row a { color: var(--text-soft); }
.info-row a:hover { color: var(--gold); }

.socials {
  margin-top: 24px;
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}
.socials a:hover { color: var(--gold); border-color: var(--gold); text-decoration: none; }

/* feedback card */
.feedback-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feedback-card h2 { margin: 4px 0; }
.feedback-card .field { display: flex; flex-direction: column; gap: 6px; }
.feedback-card label { font-weight: 600; font-size: 0.9rem; color: var(--text-soft); }
.feedback-card .req { color: var(--gold); }
.feedback-card input,
.feedback-card textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  outline: none;
  color: var(--text);
  transition: border-color 0.15s;
  min-height: 46px;
  font-family: inherit;
}
.feedback-card input::placeholder,
.feedback-card textarea::placeholder { color: var(--text-muted); }
.feedback-card input:focus,
.feedback-card textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.18); }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
.radio-row label { font-weight: 500; display: inline-flex; align-items: center; gap: 6px; color: var(--text-soft); }
.radio-row input[type="radio"] { accent-color: var(--gold); }

.star-rating {
  display: inline-flex;
  font-size: 1.8rem;
  letter-spacing: 4px;
  cursor: pointer;
  user-select: none;
}
.star-rating span { color: #444; transition: color 0.15s; padding: 2px; }
.star-rating span.on { color: var(--gold); }

.form-status {
  margin: 6px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.ok  { color: var(--veg); }
.form-status.err { color: var(--nonveg); }

/* ---------------- Footer ---------------- */
.footer {
  background: #050505;
  color: var(--text-muted);
  padding: 56px 0 90px;        /* extra bottom padding for mobile sticky bar */
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
}
.footer h4 { margin: 0 0 14px; color: var(--text); font-size: 1rem; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--gold); }

.copyright {
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------------- Mobile sticky order bar ---------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  gap: 8px;
}
.mobile-bar a, .mobile-bar button {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 14px;
  padding: 8px 4px;
  font-size: 0.72rem;
  min-height: 50px;
  text-align: center;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  line-height: 1;
}
.mobile-bar .icon { font-size: 1.1rem; line-height: 1; }
.mobile-bar a.menu  { background: var(--gold); color: #1a1300; border-color: var(--gold); }
.mobile-bar a.swiggy{ background: #fc8019; color: #fff; border-color: transparent; }
.mobile-bar a.zomato{ background: #e23744; color: #fff; border-color: transparent; }
.mobile-bar a.call  { background: #25d366; color: #fff; border-color: transparent; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .order-cards { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .map-iframe { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; }

  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* Nav: collapse links into a slide-down menu */
  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; }
  .hamburger { display: block; }
  .hide-sm { display: none; }

  .brand { gap: 8px; }
  .brand-name { font-size: 1.15rem; line-height: 1.1; }
  .brand-tag { font-size: 0.56rem; letter-spacing: 0.1em; }
  .logo-mark { width: 28px; height: 28px; }
  .nav-cta { gap: 4px; }
  .nav-cta .btn-ghost { padding: 8px 12px; }

  /* Hero */
  .hero { padding: 36px 0 48px; }
  .hero-copy h1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-meta { gap: 14px; }
  .hero-meta > div { padding-left: 10px; }
  .hero-meta strong { font-size: 0.95rem; }
  .hero-card { transform: none; }

  /* Buttons / CTAs full width on small screens */
  .hero-cta { gap: 10px; flex-wrap: wrap; }
  .hero-cta .btn { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .btn-lg { padding: 13px 18px; font-size: 0.95rem; min-height: 48px; }

  /* Tone down the brush stroke on phones */
  .brush { opacity: 0.35; max-width: 60vw; top: -20px !important; left: -60px !important; }

  /* Sections */
  .section-head h2 { font-size: 1.6rem; }
  .section-head p { font-size: 0.95rem; }

  .row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Menu list: tighter rows on phones */
  .menu-list { gap: 8px; }
  .menu-row { padding: 12px 14px; gap: 12px; }
  .row-title { font-size: 0.95rem; gap: 6px; }
  .row-desc { font-size: 0.8rem; }
  .popular-badge, .size-badge { font-size: 0.6rem; padding: 2px 7px; }

  /* Reviews: stack avg rating + button on top of each other on phones */
  .reviews-summary { padding: 18px 18px; gap: 14px; }
  .reviews-summary .rating-block { gap: 14px; }
  .reviews-summary .rating-num { font-size: 2.2rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 16px 16px 18px; }
  .review-head { gap: 10px; }
  .avatar { width: 38px; height: 38px; font-size: 0.85rem; }

  /* Order cards keep equal spacing */
  .order-card { padding: 16px; min-height: 80px; }
  .order-card .order-logo { width: 48px; height: 48px; font-size: 1.3rem; }

  /* Reviews */
  .map-side { padding: 22px; }
  .rating-num { font-size: 2.4rem; }

  /* Feedback form */
  .feedback-card { padding: 22px; border-radius: var(--radius-lg); }

  /* Sticky mobile bar */
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
  /* Hide the top "Call" button - bottom bar already has Call */
  .nav-cta .btn-primary { display: none; }
}

@media (max-width: 380px) {
  .menu-row { padding: 11px 12px; }
  .brand-tag { display: none; }
  .nav-cta { gap: 4px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
