/*
 * INDIANSPICEROUTE — Component Styles
 * Nav, Footer, Hero, Menu cards, Theme toggle.
 */

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
/* #nav-root is the sticky anchor — it spans the full document so sticky works correctly.
   .site-header is just a regular block inside it. */
#nav-root {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  background-color: var(--bg-nav);
  border-bottom: 3px solid var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--site-nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
/* Two logo files ship: logo-w (for light backgrounds) and logo-b (for dark).
   We render both and show whichever matches the active theme so the wordmark
   never disappears against the nav background. */
.nav__logo-img {
  height: 104px;
  width: auto;
  display: none;
}
[data-theme="light"] .nav__logo-img--light,
[data-theme="dark"]  .nav__logo-img--dark {
  display: block;
}
/* The nav is a light island (data-theme="light" on .site-header) sitting inside a
   dark page, so the dark <html> root would otherwise also reveal the dark logo.
   Force the light logo to win inside the header. */
.site-header[data-theme="light"] .nav__logo-img--dark { display: none; }
.nav__logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover,
.nav__link--active {
  color: var(--accent-primary);
  background-color: var(--saffron-light);
}
[data-theme="dark"] .nav__link:hover,
[data-theme="dark"] .nav__link--active {
  background-color: rgba(255, 153, 51, 0.12);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: background-color 0.2s, color 0.2s;
}
.theme-toggle:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-primary);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 2px 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--site-nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background-color: var(--bg-nav);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav__links--open { display: flex; }
  .nav__link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 3rem 0 0;
  margin-top: 5rem;
  border-top: 4px solid var(--saffron);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.footer__name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

.site-footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.site-footer p, .site-footer a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--neutral-400);
}
.site-footer a:hover { color: var(--saffron); }

.footer__socials { display: flex; flex-direction: column; gap: 0.4rem; }

.footer__bottom {
  border-top: 1px solid var(--dark-bg-600);
  padding: 1rem 1.25rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.8rem; color: var(--neutral-600); }

.footer__devby {
  font-size: 0.78rem;
  color: var(--neutral-600);
  font-style: italic;
}
.footer__devby a {
  color: var(--saffron);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer__devby a:hover {
  color: var(--saffron-dark);
}

@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,153,51,0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(19,136,8,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  max-width: 700px;
}
.hero__logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}
.hero__logo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.hero__title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--saffron), var(--india-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════════
   MENU CARD
══════════════════════════════════════════ */
.menu-section { margin-bottom: 3rem; }
.menu-section__title {
  font-size: 1.5rem;
  border-left: 4px solid var(--accent-primary);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: box-shadow 0.2s, transform 0.2s, background-color 0.25s;
}
.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background-color: var(--bg-card-hover);
}

.menu-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  flex: 1;
}
.menu-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   TABS (for menu page)
══════════════════════════════════════════ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}
.tab-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 4px 4px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color 0.2s, background-color 0.2s;
}
.tab-btn:hover { color: var(--accent-primary); }
.tab-btn--active {
  color: var(--accent-primary);
  border-bottom: 3px solid var(--accent-primary);
  margin-bottom: -2px;
}

.tab-panel { display: none; }
.tab-panel--active { display: block; }

/* ══════════════════════════════════════════
   HOMEPAGE HERO — 2-COL OVERRIDE
══════════════════════════════════════════ */

/* Override the centered stub hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  background-color: var(--dark-bg-900);
}

/* Remove old pseudo overlay */
.hero::before { display: none; }

/* Theme-specific backgrounds */
[data-theme="light"] .hero {
  background-color: var(--saffron-pale);
  background-image:
    radial-gradient(circle, rgba(255,153,51,0.13) 1px, transparent 1px);
  background-size: 28px 28px;
}
[data-theme="dark"] .hero {
  background-color: var(--dark-bg-900);
  background-image:
    radial-gradient(ellipse at 72% 50%, rgba(255,153,51,0.11) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 85%, rgba(19,136,8,0.05) 0%, transparent 40%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
  width: 100%;
}

/* Left column */
.hero__eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  animation: fade-up 0.55s ease both;
}

.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  animation: fade-up 0.55s 0.1s ease both;
}

.hero__accent {
  font-style: italic;
  color: var(--accent-primary);
  -webkit-text-fill-color: var(--accent-primary);
  background: none;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fade-up 0.55s 0.18s ease both;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  animation: fade-up 0.55s 0.26s ease both;
}

/* 3-color flag stripe under CTAs */
.hero__flag-stripe {
  display: flex;
  height: 5px;
  width: 180px;
  border-radius: 3px;
  overflow: hidden;
  animation: fade-up 0.55s 0.34s ease both;
}
.hero__flag-stripe > div:nth-child(1) { flex: 1; background: var(--saffron); }
.hero__flag-stripe > div:nth-child(2) { flex: 1; background: var(--india-white); border-top: 1px solid var(--neutral-300); border-bottom: 1px solid var(--neutral-300); }
.hero__flag-stripe > div:nth-child(3) { flex: 1; background: var(--india-green); }
[data-theme="dark"] .hero__flag-stripe > div:nth-child(2) { border-color: rgba(255,255,255,0.15); }

/* Right column: plate image */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.7s 0.15s ease both;
}

.hero__plate-wrap {
  position: relative;
  width: min(552px, 95vw);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 40px rgba(255, 153, 51, 0.12));
}

.hero__plate-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Smoke rising from the plate ── */
/* Food surface sits at ~38% from top of the transparent-bg PNG */
/* Container is 80% of the 552px plate ≈ 440px */
.hero__smoke {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 8px;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.smoke-puff {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 240, 0.90) 0%, rgba(255, 248, 240, 0) 68%);
  filter: blur(14px);
  opacity: 0;
}

/* Bottom smoke container — front rim of plate (~74% from top, plate narrows so 320px) */
.hero__smoke--bottom {
  top: 74%;
  width: 320px;
}

/* Bottom puffs — shorter rise, drift outward as they climb */
.smoke-puff--b1 { width: 56px; height: 56px; left: 130px; animation: smoke-rise-c  3.2s ease-out 0.3s  infinite; }
.smoke-puff--b2 { width: 44px; height: 44px; left:  26px; animation: smoke-rise-fl 2.9s ease-out 1.15s infinite; }
.smoke-puff--b3 { width: 50px; height: 50px; left: 230px; animation: smoke-rise-fr 3.6s ease-out 1.8s  infinite; }
.smoke-puff--b4 { width: 40px; height: 40px; left:  76px; animation: smoke-rise-l  3.1s ease-out 2.55s infinite; }
.smoke-puff--b5 { width: 46px; height: 46px; left: 180px; animation: smoke-rise-r  2.7s ease-out 0.7s  infinite; }

/* 8 puffs spread across the full 440px width */
.smoke-puff--1 { width: 80px; height: 80px; left: 180px; animation: smoke-rise-c  2.8s ease-out 0s    infinite; }
.smoke-puff--2 { width: 62px; height: 62px; left:  20px; animation: smoke-rise-l  3.3s ease-out 0.85s infinite; }
.smoke-puff--3 { width: 70px; height: 70px; left: 330px; animation: smoke-rise-r  3.1s ease-out 1.7s  infinite; }
.smoke-puff--4 { width: 55px; height: 55px; left:  80px; animation: smoke-rise-l  2.6s ease-out 2.4s  infinite; }
.smoke-puff--5 { width: 66px; height: 66px; left: 270px; animation: smoke-rise-r  3.5s ease-out 0.4s  infinite; }
.smoke-puff--6 { width: 60px; height: 60px; left: 150px; animation: smoke-rise-c  3.0s ease-out 1.2s  infinite; }
.smoke-puff--7 { width: 50px; height: 50px; left:   0px; animation: smoke-rise-fl 3.8s ease-out 2.0s  infinite; }
.smoke-puff--8 { width: 58px; height: 58px; left: 360px; animation: smoke-rise-fr 3.4s ease-out 0.6s  infinite; }

@keyframes smoke-rise-c {
  0%   { opacity: 0;    transform: translateY(0)       scale(0.35); }
  18%  { opacity: 0.75; transform: translateY(-22px)   scale(0.72); }
  55%  { opacity: 0.38; transform: translateY(-95px)   scale(1.60); }
  100% { opacity: 0;    transform: translateY(-190px)  scale(3.00); }
}
@keyframes smoke-rise-l {
  0%   { opacity: 0;    transform: translateY(0)       translateX(0)     scale(0.35); }
  18%  { opacity: 0.75; transform: translateY(-20px)   translateX(-10px) scale(0.72); }
  55%  { opacity: 0.38; transform: translateY(-90px)   translateX(-22px) scale(1.60); }
  100% { opacity: 0;    transform: translateY(-185px)  translateX(-36px) scale(2.80); }
}
@keyframes smoke-rise-r {
  0%   { opacity: 0;    transform: translateY(0)       translateX(0)    scale(0.35); }
  18%  { opacity: 0.75; transform: translateY(-20px)   translateX(10px) scale(0.72); }
  55%  { opacity: 0.38; transform: translateY(-90px)   translateX(22px) scale(1.60); }
  100% { opacity: 0;    transform: translateY(-185px)  translateX(36px) scale(2.80); }
}
@keyframes smoke-rise-fl {
  0%   { opacity: 0;    transform: translateY(0)       translateX(0)     scale(0.35); }
  18%  { opacity: 0.70; transform: translateY(-18px)   translateX(-18px) scale(0.68); }
  55%  { opacity: 0.32; transform: translateY(-85px)   translateX(-42px) scale(1.50); }
  100% { opacity: 0;    transform: translateY(-175px)  translateX(-65px) scale(2.60); }
}
@keyframes smoke-rise-fr {
  0%   { opacity: 0;    transform: translateY(0)       translateX(0)    scale(0.35); }
  18%  { opacity: 0.70; transform: translateY(-18px)   translateX(18px) scale(0.68); }
  55%  { opacity: 0.32; transform: translateY(-85px)   translateX(42px) scale(1.50); }
  100% { opacity: 0;    transform: translateY(-175px)  translateX(65px) scale(2.60); }
}

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

/* Responsive hero */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 0;
    gap: 2.5rem;
  }
  .hero__visual { order: -1; }
  .hero__desc   { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__ctas   { justify-content: center; }
  .hero__flag-stripe { margin: 0 auto; }
}

/* ══════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════ */
.menu-page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: var(--dark-bg-900);
  background-image:
    radial-gradient(ellipse at 60% 0%, rgba(255,153,51,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(19,136,8,0.05) 0%, transparent 45%);
  border-bottom: 1px solid var(--border-color);
}
.menu-page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.75rem 0;
}
.menu-page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Subpage hero — breakfast & fusion pages */
.subpage-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.subpage-hero--contact {
  background: var(--dark-bg-900);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 153, 51, 0.10) 0%, transparent 60%);
}
.subpage-hero--breakfast {
  background: var(--dark-bg-900);
  background-image:
    radial-gradient(ellipse at 30% 0%, rgba(255, 153, 51, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 200, 50, 0.06) 0%, transparent 45%);
}
.subpage-hero--fusion {
  background: var(--dark-bg-900);
  background-image:
    radial-gradient(ellipse at 70% 0%, rgba(19, 136, 8, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(255, 153, 51, 0.10) 0%, transparent 45%);
}
.subpage-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.75rem 0;
}
.subpage-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

.subpage-content {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

/* Primary phone CTA */
.contact-call-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(255,153,51,0.10) 0%, rgba(255,153,51,0.04) 100%);
  border: 2px solid var(--accent-primary);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.contact-call-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(255,153,51,0.10), transparent 65%);
  pointer-events: none;
}
.contact-call-cta:hover {
  background: linear-gradient(135deg, rgba(255,153,51,0.18) 0%, rgba(255,153,51,0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 153, 51, 0.18);
}
.contact-call-cta:active { transform: translateY(0); }

.contact-call-cta__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: phone-pulse 2.5s ease-in-out infinite;
}
.contact-call-cta__icon svg { width: 28px; height: 28px; }

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255, 153, 51, 0.55); }
  50%       { box-shadow: 0 0 0 14px rgba(255, 153, 51, 0);   }
}

.contact-call-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-call-cta__label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.contact-call-cta__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.contact-call-cta__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-call-cta__arrow {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.contact-call-cta:hover .contact-call-cta__arrow { transform: translateX(5px); }

/* Info cards grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
a.contact-info-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 153, 51, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}
.contact-info-card__icon svg { width: 20px; height: 20px; }

.contact-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}
.contact-info-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.contact-info-card__action {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-time {
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .contact-call-cta  { padding: 1.4rem 1.25rem; gap: 1rem; }
  .contact-call-cta__icon { width: 50px; height: 50px; }
  .contact-call-cta__arrow { display: none; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* Sticky tab bar — sits just below the site nav */
.menu-tabs-bar {
  position: sticky;
  top: var(--site-nav-h);
  z-index: 99;
  background: var(--dark-bg-900);
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.menu-tabs-bar .tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  gap: 0;
}
.menu-tabs-bar .tabs::-webkit-scrollbar { display: none; }
.menu-tabs-bar .tab-btn {
  white-space: nowrap;
  padding: 1rem 1.3rem;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.menu-tabs-bar .tab-btn--active {
  color: var(--accent-primary);
  border-bottom: 3px solid var(--accent-primary);
  margin-bottom: -2px;
}

.menu-content {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

/* Image-enhanced card — activated when item has an img field */
.menu-item__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background-color: var(--dark-bg-700);
}
.menu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.menu-item--has-img {
  padding: 0;
  gap: 0;
}
.menu-item--has-img:hover .menu-item__img img {
  transform: scale(1.06);
}
.menu-item--has-img .menu-item__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

/* ══════════════════════════════════════════
   FLAG SECTION DIVIDER
══════════════════════════════════════════ */
.flag-divider {
  display: flex;
  height: 6px;
  width: 100%;
}
.flag-divider > div:nth-child(1) { flex: 1; background: var(--saffron); }
.flag-divider > div:nth-child(2) { flex: 1; background: var(--india-white); }
.flag-divider > div:nth-child(3) { flex: 1; background: var(--india-green); }
[data-theme="dark"] .flag-divider > div:nth-child(2) {
  background: rgba(255, 255, 255, 0.14);
}

/* ══════════════════════════════════════════
   CHEF'S SIGNATURES
══════════════════════════════════════════ */
.signatures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.sig-card--featured {
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--saffron);
}
[data-theme="dark"] .sig-card--featured {
  box-shadow: 0 0 0 1px var(--saffron), 0 4px 24px rgba(255, 153, 51, 0.15);
}

.sig-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--saffron);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  z-index: 1;
}

.sig-card__img-area {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.sig-card__img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.sig-card:hover .sig-card__img-area img {
  transform: scale(1.06);
}
/* Gradient overlay at bottom of image so text area blends in */
.sig-card__img-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
  pointer-events: none;
}

.sig-card__body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sig-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.sig-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}
.sig-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}
.sig-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-secondary);
  transition: color 0.2s, letter-spacing 0.2s;
}
.sig-card__link:hover {
  color: var(--accent-primary);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .signatures__grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .signatures__grid { grid-template-columns: 1fr 1fr; }
  .sig-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
}

/* ══════════════════════════════════════════
   MENU CATEGORIES GRID
══════════════════════════════════════════ */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.categories__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Card base ── */
.cat-tile {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.cat-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}
[data-theme="dark"] .cat-tile:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.50);
}

/* ── Coloured gradient panel ── */
.cat-tile__visual {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Diagonal stripe texture overlay on each panel */
.cat-tile__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg,
    transparent 0px,
    transparent 18px,
    rgba(255,255,255,0.055) 18px,
    rgba(255,255,255,0.055) 19px
  );
  pointer-events: none;
  z-index: 1;
}
/* Radial highlight at top */
.cat-tile__visual::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Full-bleed category photo (replaces the old emoji icon) */
.cat-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s ease;
}
.cat-tile:hover .cat-tile__img {
  transform: scale(1.07);
}

/* Card 1 — Saffron (Main Menu) */
.categories__grid--4 .cat-tile:nth-child(1) { border-top: 3px solid #FF9933; }
.categories__grid--4 .cat-tile:nth-child(1) .cat-tile__visual {
  background: linear-gradient(148deg, #FF9933 0%, #C85A00 100%);
}
/* Card 2 — Golden Amber (Breakfast) */
.categories__grid--4 .cat-tile:nth-child(2) { border-top: 3px solid #FFC044; }
.categories__grid--4 .cat-tile:nth-child(2) .cat-tile__visual {
  background: linear-gradient(148deg, #FFC044 0%, #D46200 100%);
}
/* Card 3 — India Green (Drinks) */
.categories__grid--4 .cat-tile:nth-child(3) { border-top: 3px solid #138808; }
.categories__grid--4 .cat-tile:nth-child(3) .cat-tile__visual {
  background: linear-gradient(148deg, #22C018 0%, #075204 100%);
}
/* Card 4 — Chakra Navy (Fusion) */
.categories__grid--4 .cat-tile:nth-child(4) { border-top: 3px solid #3333AA; }
.categories__grid--4 .cat-tile:nth-child(4) .cat-tile__visual {
  background: linear-gradient(148deg, #3333AA 0%, #00003A 100%);
}

/* ── Large icon ── */
.cat-tile__icon {
  font-size: 3.8rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  /* reset old box styles */
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: block;
}
.cat-tile:hover .cat-tile__icon {
  transform: scale(1.18) translateY(-5px);
}

/* ── Label area ── */
.cat-tile__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  flex: 1;
}
.cat-tile__text {
  flex: 1;
  min-width: 0;
}
.cat-tile__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-tile__desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Arrow badge ── */
.cat-tile__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: var(--bg-secondary);
  color: var(--text-muted);
  transition: background-color 0.22s, color 0.22s, transform 0.22s;
}
/* Arrow colour matches card accent on hover */
.categories__grid--4 .cat-tile:nth-child(1):hover .cat-tile__arrow { background: #FF9933; color: #fff; transform: translateX(3px); }
.categories__grid--4 .cat-tile:nth-child(2):hover .cat-tile__arrow { background: #FFC044; color: #fff; transform: translateX(3px); }
.categories__grid--4 .cat-tile:nth-child(3):hover .cat-tile__arrow { background: #138808; color: #fff; transform: translateX(3px); }
.categories__grid--4 .cat-tile:nth-child(4):hover .cat-tile__arrow { background: #3333AA; color: #fff; transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .categories__grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .categories__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .categories__grid,
  .categories__grid--4 { grid-template-columns: 1fr; }
  .cat-tile__visual { height: 130px; }
  .cat-tile__icon { font-size: 3rem; }
}

/* ══════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════ */
.promo-banner {
  padding: 3rem 0;
  background: linear-gradient(110deg, #1A0E02 0%, #2D1A05 55%, #221005 100%);
  border-top: 3px solid var(--saffron);
  border-bottom: 3px solid var(--saffron);
  position: relative;
  overflow: hidden;
}
/* Subtle repeating spice dots */
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,153,51,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-banner__eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.4rem;
}
.promo-banner__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.promo-banner__price { color: var(--saffron); }
.promo-banner__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .promo-banner__inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   ABOUT TEASER
══════════════════════════════════════════ */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left image panel */
.about-teaser__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;            /* square panel to match the square photo */
  border-radius: 32px;        /* generous rounding for the square image */
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-teaser__img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* full-bleed photo fills the rounded panel */
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.about-teaser__visual:hover .about-teaser__img {
  transform: scale(1.04);
}

/* Right text column */
.about-teaser__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0.6rem 0 1.35rem;
}
.about-teaser__text p {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .about-teaser__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-teaser__visual { min-height: 280px; }
  .mandala-svg { width: 180px; height: 180px; }
}

/* ══════════════════════════════════════════
   RESERVATION CTA SECTION
══════════════════════════════════════════ */
.reservation-cta {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.reservation-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,153,51,0.10) 0%, transparent 62%);
  pointer-events: none;
}
[data-theme="dark"] .reservation-cta {
  background: var(--dark-bg-800);
}
[data-theme="dark"] .reservation-cta::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(255,153,51,0.09) 0%, transparent 58%);
}

.reservation-cta .container { position: relative; z-index: 1; }

.reservation-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text-primary);
  line-height: 1.18;
  margin: 0.5rem 0 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.reservation-cta__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}
.reservation-cta__btn {
  padding: 1rem 2.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
