/* ============================================================
   Restaurant Indian Spices — style.css
   Palette: warm ivory base with saffron, chili & cardamom
   spice accents (light, colorful theme)
   ============================================================ */

:root {
  --cream-bg: #fdf6ea;        /* main warm ivory background */
  --cream-bg-2: #f7ecd8;      /* alternate section, saffron tint */
  --card: #fffdf8;            /* card surfaces */
  --ink: #35251a;             /* primary text, deep espresso brown */
  --ink-soft: #6e5844;        /* secondary text */
  --saffron: #e8930c;         /* primary accent — marigold/saffron */
  --saffron-light: #f6b93f;
  --chili: #c2402a;           /* secondary accent — chili/terracotta */
  --cardamom: #2e7d4f;        /* green accent — success states */
  --footer-bg: #2a1c12;       /* deep brown, footer & mobile drawer */
  --cream: #f5efe2;           /* light text on dark areas (hero/footer) */
  --cream-dim: #e9dcc6;
  --radius: 10px;
  --shadow: 0 16px 40px rgba(90, 62, 30, 0.14);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

.skip-link {
  position: absolute;
  top: -60px; left: 1rem;
  z-index: 300;
  background: var(--saffron);
  color: #3a2308;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top 0.25s;
}
.skip-link:focus { top: 0; color: #3a2308; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--cream-bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: var(--chili); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--saffron); }

.container { width: min(1140px, 92%); margin-inline: auto; }
.center { text-align: center; }

/* ---------- typography helpers ---------- */
.section { padding: 6rem 0; }

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
  text-wrap: balance;
}

/* spice ornament — two saffron lines with a chili diamond */
.section-title.ornament { margin-bottom: 1.1rem; }
.section-title.ornament::after {
  content: "";
  display: block;
  width: 150px;
  height: 12px;
  margin: 1.15rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='12' viewBox='0 0 150 12'%3E%3Cline x1='0' y1='6' x2='60' y2='6' stroke='%23e8930c' stroke-width='1.5'/%3E%3Cline x1='90' y1='6' x2='150' y2='6' stroke='%23e8930c' stroke-width='1.5'/%3E%3Crect x='71' y='2' width='8' height='8' fill='%23c2402a' transform='rotate(45 75 6)'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-sub {
  max-width: 560px;
  margin: 0 auto 0.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-gold { background: var(--saffron); color: #3a2308; border-color: var(--saffron); }
.btn-gold:hover { background: var(--saffron-light); border-color: var(--saffron-light); color: #3a2308; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(245, 239, 226, 0.6); }
.btn-outline:hover { border-color: var(--saffron-light); color: var(--saffron-light); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--chili); border-color: var(--chili); }
.btn-outline-dark:hover { background: var(--chili); color: #fff6ea; }

.btn-block { width: 100%; }
.btn-nav { padding: 0.55rem 1.4rem; font-size: 0.8rem; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
  background: linear-gradient(rgba(42, 28, 18, 0.72), transparent);
}

.navbar.scrolled {
  background: rgba(253, 246, 234, 0.96);
  padding: 0.55rem 0;
  box-shadow: 0 6px 24px rgba(90, 62, 30, 0.18);
  backdrop-filter: blur(8px);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { height: 46px; width: auto; border-radius: 6px; }
.brand-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 600;
  white-space: nowrap;
}
.brand-text em { color: var(--saffron-light); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a:not(.btn) {
  color: var(--cream);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* dark text once the navbar sits on the light background */
.navbar.scrolled .brand-text { color: var(--ink); }
.navbar.scrolled .brand-text em { color: var(--chili); }
.navbar.scrolled .nav-links a:not(.btn) { color: var(--ink); }
.navbar.scrolled .hamburger span { background: var(--ink); }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.hamburger.open span { background: var(--cream); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=70")
    center / cover no-repeat,
    radial-gradient(ellipse at 30% 40%, #6b4423, #2a1c12);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42, 28, 18, 0.5) 0%, rgba(42, 28, 18, 0.62) 55%, var(--cream-bg) 100%);
}

.hero-content { position: relative; z-index: 2; padding-top: 5rem; }

.hero-content > * { animation: fadeUp 0.9s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.65s; }
.hero-content > *:nth-child(5) { animation-delay: 0.8s; }

.hero-kicker {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--saffron-light);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fffaf0;
  text-shadow: 0 2px 24px rgba(42, 28, 18, 0.45);
}
.hero-title span { color: var(--saffron-light); }

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: #f3e7d2;
  margin: 1.2rem 0 1.4rem;
  font-style: italic;
  font-family: var(--font-head);
  text-shadow: 0 1px 14px rgba(42, 28, 18, 0.45);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(42, 28, 18, 0.45);
  border: 1px solid rgba(246, 185, 63, 0.55);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #fdf3e0;
}
.stars { color: var(--saffron-light); letter-spacing: 0.15em; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 2rem; z-index: 2;
  width: 26px; height: 44px;
  border: 2px solid rgba(110, 88, 68, 0.55);
  border-radius: 20px;
  transform: translateX(-50%);
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: var(--chili);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ---------- about ---------- */
.about { background: var(--cream-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -1rem; bottom: 1.6rem;
  background: var(--saffron);
  color: #3a2308;
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 1.05rem; letter-spacing: 0.05em; }
.about-badge span { font-size: 0.85rem; }

.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-card {
  background: var(--card);
  border: 1px solid rgba(232, 147, 12, 0.3);
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(90, 62, 30, 0.07);
  transition: transform 0.3s, border-color 0.3s;
}
.about-card:hover { transform: translateY(-5px); border-color: var(--chili); }
.card-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.about-card h3 { font-family: var(--font-head); font-size: 1.02rem; color: var(--chili); margin-bottom: 0.35rem; }
.about-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* ---------- signature plates ---------- */
.signature { background: var(--cream-bg-2); }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.dish-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(232, 147, 12, 0.25);
  box-shadow: 0 8px 22px rgba(90, 62, 30, 0.08);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--saffron); }
.dish-card:hover .dish-img { transform: scale(1.06); }

.dish-img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background-color: #ecdfc8;
  transition: transform 0.5s;
}

.dish-info { padding: 1.2rem 1.3rem 1.4rem; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.dish-info h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.dish-info p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.4rem; }

.price { color: var(--chili); font-weight: 600; white-space: nowrap; }

/* ---------- thali banner ---------- */
.thali-banner {
  background: linear-gradient(100deg, var(--saffron), var(--chili));
  padding: 2.2rem 0;
}
.thali-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.thali-inner h2 { font-family: var(--font-head); color: #fff8ec; font-size: 1.5rem; }
.thali-inner p { color: rgba(255, 248, 236, 0.92); }
.thali-inner .btn-gold { background: #fff8ec; border-color: #fff8ec; color: #a53318; }
.thali-inner .btn-gold:hover { background: #ffefd6; border-color: #ffefd6; color: #a53318; }

/* ---------- menu ---------- */
.menu { background: var(--cream-bg); }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 2.6rem;
}

.tab {
  background: transparent;
  border: 1px solid rgba(194, 64, 42, 0.4);
  color: var(--ink-soft);
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.tab:hover { color: var(--chili); border-color: var(--chili); }
.tab.active { background: var(--chili); color: #fff6ea; border-color: var(--chili); font-weight: 600; }

.menu-panel { display: none; grid-template-columns: 1fr 1fr; gap: 0.4rem 3rem; }
.menu-panel.active { display: grid; animation: fadeUp 0.5s ease both; }

.menu-panel-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: 0.2rem 0.4rem 0.6rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0.4rem;
  border-bottom: 1px dashed rgba(232, 147, 12, 0.45);
}
.menu-item h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.menu-item p { font-size: 0.85rem; color: var(--ink-soft); }

.menu-note { margin-top: 2.4rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- gallery (real restaurant photos) ---------- */
.gallery { background: var(--cream-bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.g-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}

.g-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #ecdfc8;
  box-shadow: 0 8px 22px rgba(90, 62, 30, 0.12);
  cursor: zoom-in;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.g-item--lg img { aspect-ratio: 4 / 3; }

.g-item--wide { grid-column: 1 / -1; }
.g-item--wide img {
  aspect-ratio: 5 / 2;
  object-position: center 35%;
}

.g-item:hover img { transform: scale(1.05); }

.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.1rem 0.8rem;
  background: linear-gradient(transparent, rgba(42, 28, 18, 0.72));
  color: #fdf3e0;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(28, 18, 10, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.lightbox figcaption {
  position: absolute;
  bottom: 3vh; left: 50%;
  transform: translateX(-50%);
  color: var(--cream-dim);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s, transform 0.25s;
}
.lightbox-close:hover { color: var(--saffron-light); transform: rotate(90deg); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--cream-bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.testi-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(232, 147, 12, 0.3);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 6px 18px rgba(90, 62, 30, 0.07);
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem; right: 0.6rem;
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: rgba(232, 147, 12, 0.16);
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--chili); }
.testi-card .stars { margin-bottom: 0.8rem; color: var(--saffron); }
.testi-card p { color: var(--ink-soft); font-style: italic; font-size: 0.95rem; }
.testi-card footer { margin-top: 1rem; color: var(--chili); font-size: 0.9rem; }


/* ---------- location ---------- */
.location { background: var(--cream-bg-2); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.hours-card {
  background: var(--card);
  border: 1px solid rgba(232, 147, 12, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(90, 62, 30, 0.07);
}
.hours-card h3 { font-family: var(--font-head); color: var(--chili); font-size: 1.25rem; margin-bottom: 0.8rem; }
.hours-card .addr { color: var(--ink-soft); }
.hours-card .tel { margin: 0.5rem 0 1.2rem; font-size: 1.05rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.hours-table td { padding: 0.45rem 0; border-bottom: 1px dashed rgba(232, 147, 12, 0.4); color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink); }
.hours-table .closed { color: var(--chili); letter-spacing: 0.05em; }

.second-loc { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid rgba(232, 147, 12, 0.4); }
.second-loc h4 { font-family: var(--font-head); color: var(--chili); margin-bottom: 0.3rem; }
.second-loc p { font-size: 0.9rem; color: var(--ink-soft); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(232, 147, 12, 0.3);
  min-height: 380px;
  box-shadow: 0 6px 18px rgba(90, 62, 30, 0.07);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: var(--footer-bg);
  padding-top: 4rem;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--chili), var(--cardamom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.f-brand p { color: #cbb9a2; font-size: 0.92rem; margin-top: 1rem; }

.socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(232, 147, 12, 0.5);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--cream-dim);
  transition: all 0.3s;
}
.socials a:hover { background: var(--saffron); color: #2a1c12; }
.socials img { width: 20px; height: 20px; border-radius: 4px; display: block; }

.f-links h4, .f-news h4 {
  font-family: var(--font-head);
  color: var(--saffron-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.f-links a { display: block; color: #e3d5bf; font-size: 0.92rem; margin-bottom: 0.55rem; }
.f-links a:hover { color: var(--saffron-light); }
.f-news p { color: #cbb9a2; font-size: 0.9rem; }

.news-form { display: flex; gap: 0.6rem; margin-top: 1rem; }
.news-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 147, 12, 0.45);
  border-radius: 999px;
  color: var(--cream);
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  outline: none;
}
.news-form input:focus { border-color: var(--saffron); }
.news-form .btn { padding: 0.65rem 1.4rem; }

.f-news .form-success { color: #8fd4a5; }

.footer-bottom {
  border-top: 1px solid rgba(232, 147, 12, 0.25);
  padding: 1.2rem 0;
  text-align: center;
}
.footer-bottom p { color: #b9a68d; font-size: 0.85rem; }

/* ---------- focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.signature-grid .fade-in:nth-child(2), .testi-grid .fade-in:nth-child(2),
.g-col .fade-in:nth-child(1) { transition-delay: 0.1s; }
.signature-grid .fade-in:nth-child(3), .testi-grid .fade-in:nth-child(3),
.g-col .fade-in:nth-child(2) { transition-delay: 0.2s; }
.gallery-grid .g-item--wide { transition-delay: 0.1s; }
.signature-grid .fade-in:nth-child(5) { transition-delay: 0.1s; }
.signature-grid .fade-in:nth-child(6) { transition-delay: 0.2s; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-content > * { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .g-item img, .dish-img { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .signature-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-panel { grid-template-columns: 1fr; }
  .about-badge { right: 0.5rem; }
}

@media (max-width: 680px) {
  .section { padding: 4rem 0; }

  /* lighter hero image on small screens */
  .hero-bg {
    background:
      url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=900&q=65")
      center / cover no-repeat,
      radial-gradient(ellipse at 30% 40%, #6b4423, #2a1c12);
  }

  /* 16px inputs stop iOS auto-zoom on focus */
  .news-form input { font-size: 1rem; }

  /* comfier touch targets */
  .tab { padding: 0.7rem 1.35rem; min-height: 44px; }
  .menu-item { padding: 1.05rem 0.4rem; }
  .signature-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-col { grid-template-rows: none; grid-template-columns: 1fr; }
  .g-item img { aspect-ratio: 4 / 3; }
  .g-item--wide { grid-column: auto; }
  .g-item--wide img { aspect-ratio: 4 / 3; object-position: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }

  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(42, 28, 18, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 99;
  }
  /* drawer is always dark — links stay cream even when navbar is scrolled */
  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(42, 28, 18, 0.5); }
  .navbar.scrolled .nav-links a:not(.btn) { color: var(--cream); }
  .navbar.scrolled .nav-links.open a:not(.btn) { color: var(--cream); }
}

@media (min-width: 681px) {
  .navbar.scrolled .nav-links a:not(.btn) { color: var(--ink); }
}


/* ============================================================
   UX & beauty layer
   ============================================================ */
::selection { background: var(--saffron); color: #2a1c12; }

/* Mughal arch frame on the story photo — echo of the Taj sign */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 50% 50% var(--radius) var(--radius) / 27% 27% 10px 10px;
  outline: 1px solid rgba(232, 147, 12, 0.55);
  outline-offset: 12px;
}

/* gold-striped texture on the thali banner — like the counter wall */
.thali-banner {
  background:
    repeating-linear-gradient(90deg, rgba(42, 28, 18, 0.10) 0 16px, rgba(42, 28, 18, 0) 16px 34px),
    linear-gradient(100deg, var(--saffron), var(--chili));
}

/* live open/closed status */
.open-status { display: inline-flex; align-items: center; gap: 0.55rem; }
.open-dot {
  width: 8px; height: 8px; flex: none;
  border-radius: 50%;
  background: var(--chili);
}
.open-status.is-open .open-dot {
  background: var(--cardamom);
  box-shadow: 0 0 0 0 rgba(46, 125, 79, 0.5);
  animation: openPulse 2.2s infinite;
}
@keyframes openPulse {
  70% { box-shadow: 0 0 0 9px rgba(46, 125, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 79, 0); }
}
.hero-rating { margin-bottom: 0.9rem; margin-right: 0.6rem; }
.hero-open {
  background: rgba(42, 28, 18, 0.45);
  border: 1px solid rgba(245, 239, 226, 0.28);
  border-radius: 999px;
  padding: 0.42rem 1.15rem;
  font-size: 0.88rem;
  color: #fdf3e0;
  margin-bottom: 2rem;
}
.hero-content > *:nth-child(6) { animation-delay: 0.92s; }
.card-open { font-size: 0.92rem; color: var(--ink-soft); margin: -0.7rem 0 1rem; }
.hours-card .tel { margin-bottom: 0.9rem; }

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.8rem; margin-top: 1.3rem; }

/* active section in the navbar (scrollspy) */
.nav-links a.active:not(.btn)::after { width: 100%; }
.navbar .nav-links a.active:not(.btn) { color: var(--saffron-light); }
.navbar.scrolled .nav-links a.active:not(.btn) { color: var(--chili); }

/* lightbox prev / next */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(42, 28, 18, 0.55);
  border: 1px solid rgba(245, 239, 226, 0.3);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-nav:hover { background: var(--saffron); color: #2a1c12; }

/* mobile quick-action bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(42, 28, 18, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 147, 12, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.mobile-bar.show { transform: none; }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 226, 0.35);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mobile-bar a svg { width: 16px; height: 16px; flex: none; }
.mobile-bar .mb-primary { background: var(--saffron); border-color: var(--saffron); color: #3a2308; }

/* back to top */
.to-top {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 140;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 147, 12, 0.5);
  background: rgba(253, 246, 234, 0.94);
  color: var(--chili);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(90, 62, 30, 0.25);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { background: var(--saffron); color: #2a1c12; }

@media (max-width: 680px) {
  .mobile-bar { display: grid; }
  .to-top { bottom: calc(78px + env(safe-area-inset-bottom)); }
  .footer-bottom { padding-bottom: calc(1.2rem + 70px + env(safe-area-inset-bottom)); }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  /* menu categories become a swipeable row */
  .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.55rem;
    padding: 2px 2px 12px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent);
    mask-image: linear-gradient(90deg, #000 90%, transparent);
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bar, .to-top { transition: none; }
  .open-status.is-open .open-dot { animation: none; }
}


/* ============================================================
   Ambient video layer
   ============================================================ */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-video.playing { opacity: 1; }

.kitchen-band {
  position: relative;
  height: min(62vh, 560px);
  overflow: hidden;
  background: #2a1c12;
}
.kitchen-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kitchen-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42, 28, 18, 0.30), rgba(42, 28, 18, 0.55));
}
.kitchen-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0 1.5rem;
}
.kitchen-caption .section-kicker { color: var(--saffron-light); }
.kitchen-caption h2 {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fdf3e0;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 680px) {
  .kitchen-band { height: 46vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}


/* ============================================================
   Two locations
   ============================================================ */
.locations-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.loc-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(232, 147, 12, 0.3);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: 0 6px 18px rgba(90, 62, 30, 0.07);
}
.loc-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(232, 147, 12, 0.14);
  color: var(--chili);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
}
.loc-card h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.loc-actions .btn-sm { margin-top: 0; }
.loc-map {
  margin-top: 1.35rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(232, 147, 12, 0.25);
}
.loc-map iframe { display: block; width: 100%; height: 220px; border: 0; }

/* order location chooser */
.loc-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(28, 18, 10, 0.78);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}
.loc-modal.open { opacity: 1; visibility: visible; }
.loc-modal-box {
  position: relative;
  width: min(430px, 100%);
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.28s;
}
.loc-modal.open .loc-modal-box { transform: none; }
.loc-modal-box h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0.3rem 0 1.3rem;
}
.loc-choice {
  display: block;
  border: 1px solid rgba(232, 147, 12, 0.45);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.loc-choice:hover {
  background: rgba(232, 147, 12, 0.1);
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.loc-choice strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--chili); }
.loc-choice span { font-size: 0.85rem; color: var(--ink-soft); }
.loc-modal-close {
  position: absolute;
  top: 0.7rem; right: 0.9rem;
  background: none; border: 0;
  font-size: 1.7rem;
  color: var(--ink-soft);
  cursor: pointer;
}

@media (max-width: 960px) {
  .locations-2col { grid-template-columns: 1fr; }
}


/* audit fixes: comfortable touch targets */
.f-links a { display: block; padding: 0.28rem 0; }
@media (max-width: 680px) {
  .socials a { width: 44px; height: 44px; }
  .socials img { width: 22px; height: 22px; }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-bg-2); }
.faq-list { max-width: 720px; margin: 2.4rem auto 0; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(232, 147, 12, 0.3);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 14px rgba(90, 62, 30, 0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--saffron);
  transition: transform 0.3s;
}
.faq-item[open] summary { color: var(--chili); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 1.3rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* language toggle (always visible in the top bar) */
.nav-inner { justify-content: flex-start; }
.nav-inner .brand { margin-right: auto; }
.lang-toggle {
  display: flex;
  flex: none;
  border: 1px solid rgba(232, 147, 12, 0.6);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.lang-toggle a {
  padding: 0.36rem 0.8rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--cream);
  transition: background 0.25s, color 0.25s;
}
.navbar.scrolled .lang-toggle a { color: var(--ink); }
.lang-toggle a.on,
.navbar.scrolled .lang-toggle a.on {
  background: var(--saffron);
  color: #3a2308;
}
.lang-toggle a:not(.on):hover { background: rgba(232, 147, 12, 0.18); }
@media (max-width: 960px) {
  .lang-toggle a { padding: 0.42rem 0.85rem; min-height: 30px; display: grid; place-items: center; }
}


@media (max-width: 680px) {
  .nav-inner { gap: 0.6rem; }
  .brand-logo { height: 38px; }
  .brand-text { font-size: 1.08rem; }
  .lang-toggle a { padding: 0.4rem 0.62rem; font-size: 0.7rem; }
}
