/* ============================================================
   DILLI-6 INDIAN RESTAURANT — Shared Stylesheet
   Brand: Saffron Orange · Mustard Gold · Deep Brown · Beige
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --saffron:      #cc790c;
  --saffron-dk:   #C05500;
  --mustard:      #C9A44E;
  --gold:         #D4A017;
  --dark-brown:   #2B1100;
  --medium-brown: #7d4622;
  --light-beige:  #FFF5E4;
  --cream:        #F5E6C3;
  --warm-white:   #FFFAF5;
  --text-dark:    #1C0A00;
  --text-muted:   #7A5C3F;
  --white:        #FFFFFF;
  --border:       rgba(200,160,80,0.22);
  --shadow:       0 4px 24px rgba(43,17,0,0.10);
  --shadow-lg:    0 8px 48px rgba(43,17,0,0.16);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
}

.logo-img{
  width: 100%;
  height: auto;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--warm-white); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; transition: color var(--transition); }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown);
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.container     { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.text-center   { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== SECTION HELPERS ===== */
section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(232,117,26,0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,117,26,0.44);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
}
.btn-secondary:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--mustard));
  color: var(--dark-brown);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212,160,23,0.3);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.4);
}

.btn-dark {
  background: var(--dark-brown);
  color: var(--cream);
  border-color: transparent;
}
.btn-dark:hover { background: var(--medium-brown); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--saffron);
  border-color: transparent;
  font-weight: 700;
}
.btn-white:hover { background: var(--dark-brown); color: #fff; transform: translateY(-2px); }

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-white:hover { background: #fff; color: var(--saffron); transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark-brown);
  color: rgba(255,245,228,0.8);
  padding: 9px 0;
  font-size: 12.5px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar a { color: var(--mustard); font-weight: 600; }
.top-bar a:hover { color: var(--saffron); }

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--warm-white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(43,17,0,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(43,17,0,0.14); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 180px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.logo-text .name   { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark-brown); line-height: 1; }
.logo-text .sub    { font-size: 10.5px; color: var(--saffron); font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 13.5px; font-weight: 500; color: var(--text-dark);
  padding: 8px 13px; border-radius: 8px;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--saffron); background: rgba(232,117,26,0.08); }

.nav-ctas { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--dark-brown); border-radius: 2px; transition: all var(--transition); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark-brown);
  z-index: 9999;
  padding: 28px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center;}
.mobile-nav-logo {width: 150px; font-family: 'Playfair Display', serif;  color: #fff; }
.mobile-close { font-size: 28px; color: rgba(255,245,228,0.6); line-height: 1; transition: color var(--transition); }
.mobile-close:hover { color: #fff; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  font-size: 24px; font-family: 'Playfair Display', serif; font-weight: 600; color: rgba(255,245,228,0.85);
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--saffron); }
.mobile-nav-ctas { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ===== PAGE HERO (non-home pages) ===== */
.page-hero {
  background: var(--dark-brown);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,117,26,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--mustard); }
.page-hero h1 { font-size: clamp(32px,5vw,54px); color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,245,228,0.7); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ===== CARD ===== */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--dark-brown);
  color: rgba(255,245,228,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-mark {
  width: 180px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 800;
  flex-shrink: 0;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: #fff; line-height: 1; }
.footer-brand-sub  { font-size: 11px; color: var(--mustard); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { font-size: 13px; line-height: 1.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,245,228,0.6); font-size: 15px; font-weight: 700;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--saffron); color: #fff; }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,245,228,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--saffron); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-right { color: rgba(255,245,228,0.3); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-brown);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,17,0,0.92) 0%, rgba(43,17,0,0.65) 55%, rgba(107,58,31,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 100px 24px 80px;
  margin-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mustard);
  padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-title .italic { font-style: italic; color: var(--saffron); }
.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,245,228,0.80);
  margin-bottom: 14px;
  font-weight: 300;
  max-width: 580px;
}
.hero-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--mustard); font-size: 13.5px; font-weight: 500; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-pill {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,245,228,0.72); font-size: 13px;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
  color: rgba(255,245,228,0.4); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--dark-brown); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 15px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 46px; height: 46px;
  background: rgba(232,117,26,0.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
}
.trust-title { font-size: 13.5px; font-weight: 600; color: #fff; }
.trust-desc  { font-size: 11.5px; color: rgba(255,245,228,0.45); }

/* ===== ABOUT ===== */
.about-section { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow-lg);
}
.about-float-card {
  position: absolute; bottom: -28px; right: -28px;
  background: #fff; border-radius: 16px; padding: 22px 26px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-float-num  { font-family:'Playfair Display',serif; font-size: 44px; font-weight: 700; color: var(--saffron); line-height: 1; }
.about-float-text { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.about-float-accent {
  position: absolute; top: 28px; left: -24px;
  background: var(--saffron); border-radius: 12px;
  padding: 14px 18px; color: #fff; font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,117,26,0.38);
}
.check-list { display: flex; flex-direction: column; gap: 13px; margin: 22px 0 32px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.check-dot {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--saffron), var(--mustard));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

/* ===== THALI BANNER ===== */
.thali-banner {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #4A1E00 60%, #2B1100 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.thali-banner::before {
  content: '';
  position: absolute; top: -50%; right: -8%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(232,117,26,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.thali-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.thali-label { color: var(--mustard); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.thali-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,4.5vw,52px); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 14px;
}
.thali-title .price { color: var(--saffron); }
.thali-desc { color: rgba(255,245,228,0.72); font-size: 16px; margin-bottom: 30px; max-width: 500px; line-height: 1.8; }
.thali-img {
  width: 320px; height: 320px; object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(232,117,26,0.4);
  box-shadow: 0 0 60px rgba(232,117,26,0.28);
  flex-shrink: 0;
}

/* ===== DISHES GRID ===== */
.dishes-section { background: var(--light-beige); }
.dishes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.dish-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: all .35s; }
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish-img-wrap { position: relative; overflow: hidden; height: 220px; }
.dish-img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.dish-card:hover .dish-img { transform: scale(1.07); }
.dish-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--saffron); color: #fff;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; letter-spacing: 0.3px;
}
.dish-badge.veg { background: #2E7D32; }
.dish-info { padding: 20px 22px; }
.dish-name { font-family:'Playfair Display',serif; font-size: 18px; font-weight: 700; color: var(--dark-brown); margin-bottom: 6px; }
.dish-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-size: 20px; font-weight: 700; color: var(--saffron); }
.dish-btn {
  background: var(--dark-brown); color: #fff;
  padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
  transition: all .2s;
}
.dish-btn:hover { background: var(--saffron); color: #fff; }

/* ===== LIVE COUNTER ===== */
.live-section { background: var(--warm-white); }
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.live-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.live-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.live-img img { width:100%; height:190px; object-fit:cover; transition:transform .4s; }
.live-img:hover img { transform: scale(1.05); }
.live-img.wide { grid-column: span 2; }
.live-img.wide img { height: 250px; }
.live-items { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 32px; }
.live-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  background: var(--light-beige); border-radius: 12px;
  border-left: 3px solid var(--saffron);
}
.live-item-icon { font-size: 22px; }
.live-item-name { font-weight: 600; color: var(--dark-brown); font-size: 14.5px; }
.live-item-desc { font-size: 12.5px; color: var(--text-muted); }

/* ===== CATERING ===== */
.catering-home { background: var(--cream); }
.catering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.catering-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden; height: 510px;
}
.catering-img-wrap img { width:100%; height:100%; object-fit:cover; }
.catering-stats-bar {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(43,17,0,0.88);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-around; gap: 16px;
}
.c-stat-num  { font-family:'Playfair Display',serif; font-size: 28px; font-weight: 700; color: var(--saffron); }
.c-stat-lbl  { font-size: 10.5px; color: rgba(255,245,228,0.55); text-transform: uppercase; letter-spacing: 1px; }
.c-stat-div  { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
.catering-points { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.c-point { display: flex; align-items: flex-start; gap: 14px; }
.c-point-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--saffron), var(--mustard));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.c-point-title { font-size: 14.5px; font-weight: 600; color: var(--dark-brown); }
.c-point-desc  { font-size: 12.5px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark-brown); position: relative; overflow: hidden; }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-label { color: var(--mustard); }
.testimonials-section .section-subtitle { color: rgba(255,245,228,0.55); }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.t-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 28px;
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; margin-bottom: 16px; }
.t-text { color: rgba(255,245,228,0.78); font-size: 14.5px; line-height: 1.85; font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--mustard));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.t-name  { font-size: 13.5px; font-weight: 600; color: #fff; }
.t-title { font-size: 11.5px; color: rgba(255,245,228,0.38); }

/* ===== LOCATION ===== */
.location-section { background: var(--warm-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start; }
.hours-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.hours-card-title { font-family:'Playfair Display',serif; font-size: 22px; font-weight: 700; color: var(--dark-brown); margin-bottom: 22px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day  { color: var(--text-muted); font-weight: 500; }
.hours-time { font-weight: 600; color: var(--dark-brown); }
.hours-time.ext { color: var(--saffron); }
.contact-details { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.c-icon {
  width: 36px; height: 36px; background: rgba(232,117,26,0.10);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.map-wrap { border-radius: 20px; overflow: hidden; height: 100%; min-height: 440px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: none; display: block; }

/* ===== ORDER STRIP ===== */
.order-strip { background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dk) 100%); padding: 56px 0; }
.order-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.order-title { font-family:'Playfair Display',serif; font-size: clamp(22px,3vw,34px); font-weight: 700; color: #fff; margin-bottom: 6px; }
.order-desc  { color: rgba(255,255,255,0.78); font-size: 15px; }
.order-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .about-grid, .live-grid, .catering-grid { grid-template-columns:1fr; gap:44px; }
  .about-img-main { height:400px; }
  .about-float-card { right:0; }
  .about-float-accent { left:0; }
  .dishes-grid { grid-template-columns:repeat(2,1fr); }
  .t-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:none; }
}
@media (max-width:768px) {
  .hero-content { margin-left:0; padding:100px 20px 80px; max-width:100%; }
  .dishes-grid { grid-template-columns:1fr; }
  .thali-inner { justify-content:center; text-align:center; }
  .thali-img { width:240px; height:240px; }
  .location-grid { grid-template-columns:1fr; }
  .order-inner { justify-content:center; text-align:center; }
  .order-btns { justify-content:center; }
}
@media (max-width:480px) {
  .trust-grid { grid-template-columns:1fr; }
  .trust-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.07); }
}

/* ===== ABOUT PAGE ===== */
    .story-section { background: var(--warm-white); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .story-img-stack { position: relative; }
    .story-img-main {
      width: 100%; height: 520px; object-fit: cover;
      border-radius: 20px; box-shadow: var(--shadow-lg);
    }
    .story-img-accent {
      position: absolute; bottom: -28px; left: -28px;
      width: 220px; height: 170px; object-fit: cover;
      border-radius: 16px; border: 4px solid #fff;
      box-shadow: var(--shadow-lg);
    }
    .story-badge {
      position: absolute; top: 28px; right: -20px;
      background: linear-gradient(135deg, var(--saffron), var(--mustard));
      color: #fff; border-radius: 16px; padding: 18px 22px; text-align: center;
      box-shadow: 0 8px 28px rgba(232,117,26,0.36);
    }
    .story-badge-num  { font-family:'Playfair Display',serif; font-size: 36px; font-weight: 800; line-height: 1; }
    .story-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }
    .story-text blockquote {
      border-left: 4px solid var(--saffron);
      padding: 16px 20px;
      background: var(--light-beige);
      border-radius: 0 12px 12px 0;
      font-style: italic;
      color: var(--medium-brown);
      font-size: 16px; line-height: 1.8;
      margin: 24px 0;
    }

    /* VALUES */
    .values-section { background: var(--light-beige); }
    .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .value-card {
      background: #fff; border-radius: 20px; padding: 36px 28px;
      box-shadow: var(--shadow); text-align: center; transition: all .3s;
    }
    .value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .value-icon {
      width: 68px; height: 68px;
      background: linear-gradient(135deg, rgba(232,117,26,0.12), rgba(212,160,23,0.12));
      border-radius: 20px; display: flex; align-items: center; justify-content: center;
      font-size: 30px; margin: 0 auto 20px;
    }
    .value-title { font-family:'Playfair Display',serif; font-size: 19px; font-weight: 700; color: var(--dark-brown); margin-bottom: 10px; }
    .value-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; }

    /* WHAT MAKES US DIFFERENT */
    .diff-section { background: var(--dark-brown); }
    .diff-section .section-title { color: #fff; }
    .diff-section .section-label { color: var(--mustard); }
    .diff-section .section-subtitle { color: rgba(255,245,228,0.6); }
    .diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
    .diff-item {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 26px 28px;
      display: flex; gap: 16px; align-items: flex-start;
      transition: all .3s;
    }
    .diff-item:hover { background: rgba(232,117,26,0.12); border-color: rgba(232,117,26,0.3); }
    .diff-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
    .diff-title { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 6px; }
    .diff-desc  { font-size: 13px; color: rgba(255,245,228,0.6); line-height: 1.75; }

    /* CUISINE TYPES */
    .cuisines-section { background: var(--cream); }
    .cuisines-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
    .cuisine-card {
      background: #fff; border-radius: 16px; padding: 28px 22px; text-align: center;
      box-shadow: var(--shadow); transition: all .3s;
      border-bottom: 3px solid transparent;
    }
    .cuisine-card:hover { transform: translateY(-5px); border-bottom-color: var(--saffron); box-shadow: var(--shadow-lg); }
    .cuisine-img { width:100%; height:140px; object-fit:cover; border-radius:12px; margin-bottom:16px; }
    .cuisine-name { font-family:'Playfair Display',serif; font-size:17px; font-weight:700; color:var(--dark-brown); margin-bottom:6px; }
    .cuisine-desc { font-size:12.5px; color:var(--text-muted); line-height:1.7; }

    /* VISIT CTA */
    .visit-section {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
      padding: 60px 0;
    }
    .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .visit-text h2 { font-family:'Playfair Display',serif; font-size:clamp(26px,3.5vw,42px); color:#fff; margin-bottom:12px; }
    .visit-text p  { color:rgba(255,255,255,0.78); font-size:16px; line-height:1.85; margin-bottom:28px; }
    .visit-card {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 20px; padding: 32px;
    }
    .visit-hours { display:flex; flex-direction:column; gap:10px; }
    .visit-hours-row { display:flex; justify-content:space-between; font-size:14px; color:rgba(255,255,255,0.85); padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
    .visit-hours-row:last-child { border-bottom:none; }
    .visit-hours-day  { font-weight:500; }
    .visit-hours-time { font-weight:700; }
    .visit-hours-time.ext { color:var(--mustard); }

    @media (max-width:1024px) {
      .story-grid { grid-template-columns:1fr; gap:48px; }
      .values-grid { grid-template-columns:repeat(2,1fr); }
      .cuisines-grid { grid-template-columns:repeat(2,1fr); }
      .diff-grid { grid-template-columns:1fr; }
      .visit-grid { grid-template-columns:1fr; }
      .story-img-main { height:380px; }
      .story-img-accent { left:0; }
      .story-badge { right:0; }
    }
    @media (max-width:768px) {
      .values-grid { grid-template-columns:1fr; }
      .cuisines-grid { grid-template-columns:1fr; }
    }

    /* ===== CATERING HERO ===== */
    .catering-hero {
      min-height: 72vh;
      background: var(--dark-brown);
      position: relative; display: flex; align-items: center; overflow: hidden;
    }
    .catering-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=85');
      background-size: cover; background-position: center; opacity: 0.28;
    }
    .catering-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(43,17,0,0.92) 0%, rgba(43,17,0,0.60) 60%, transparent 100%);
    }
    .catering-hero-content {
      position: relative; z-index: 2;
      max-width: 680px; padding: 80px 24px;
      margin-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
    }
    .catering-hero-content .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 22px;
    }
    .catering-hero-content h1 {
      font-size: clamp(36px,5.5vw,64px); color: #fff; font-weight: 800;
      line-height: 1.08; margin-bottom: 14px;
    }
    .catering-hero-content h1 em { font-style: italic; color: var(--saffron); }
    .catering-hero-content p { color: rgba(255,245,228,0.78); font-size: 17px; margin-bottom: 32px; max-width: 520px; }

    /* STATS ROW */
    .stats-row {
      background: var(--dark-brown); padding: 0;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4,1fr);
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .stat-box {
      padding: 32px 28px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .stat-box:last-child { border-right: none; }
    .stat-num { font-family:'Playfair Display',serif; font-size: 44px; font-weight: 700; color: var(--saffron); line-height: 1; }
    .stat-label { font-size: 12.5px; color: rgba(255,245,228,0.50); margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }

    /* LIVE STATIONS */
    .stations-section { background: var(--light-beige); }
    .stations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .station-card {
      background: #fff; border-radius: 20px; overflow: hidden;
      box-shadow: var(--shadow); transition: all .3s;
    }
    .station-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .station-img { width:100%; height:220px; object-fit:cover; }
    .station-body { padding: 24px; }
    .station-icon { font-size: 28px; margin-bottom: 10px; }
    .station-name { font-family:'Playfair Display',serif; font-size: 20px; font-weight: 700; color: var(--dark-brown); margin-bottom: 8px; }
    .station-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
    .station-items { display: flex; flex-wrap: wrap; gap: 8px; }
    .station-tag {
      background: var(--light-beige); color: var(--medium-brown);
      padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
      border: 1px solid var(--border);
    }

    /* EVENT TYPES */
    .events-section { background: var(--warm-white); }
    .events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .event-card {
      background: #fff; border-radius: 16px; padding: 28px 30px;
      box-shadow: var(--shadow); display: flex; gap: 20px; align-items: flex-start;
      transition: all .3s; border-left: 4px solid var(--saffron);
    }
    .event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
    .event-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
    .event-title { font-family:'Playfair Display',serif; font-size: 19px; font-weight: 700; color: var(--dark-brown); margin-bottom: 6px; }
    .event-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

    /* PROCESS */
    .process-section { background: var(--cream); }
    .process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .process-step { text-align: center; padding: 8px; }
    .process-num {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--saffron), var(--mustard));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family:'Playfair Display',serif; font-size: 24px; font-weight: 700; color: #fff;
      margin: 0 auto 16px;
    }
    .process-title { font-weight: 700; color: var(--dark-brown); font-size: 15px; margin-bottom: 8px; }
    .process-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .process-arrow { display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--border); padding-top: 28px; }

    /* INQUIRY FORM */
    .inquiry-section { background: var(--warm-white); }
    .inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .inquiry-info h2 { font-size: clamp(26px,3.5vw,40px); margin-bottom: 16px; }
    .inquiry-info p  { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; }
    .inquiry-points { display: flex; flex-direction: column; gap: 14px; }
    .inq-point { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
    .inq-dot { width: 22px; height: 22px; background: linear-gradient(135deg,var(--saffron),var(--mustard)); border-radius: 50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:11px; flex-shrink:0; }

    /* Form */
    .catering-form { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); }
    .form-title { font-family:'Playfair Display',serif; font-size: 22px; font-weight: 700; color: var(--dark-brown); margin-bottom: 24px; }
    .form-group { margin-bottom: 18px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--border); border-radius: var(--radius-sm);
      font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text-dark);
      background: var(--warm-white); outline: none;
      transition: border-color .25s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--saffron); background: #fff; }
    .form-textarea { height: 100px; resize: vertical; }
    .form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

    /* CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
      padding: 60px 0; text-align: center;
    }
    .cta-strip h2 { font-family:'Playfair Display',serif; font-size:clamp(24px,3.5vw,40px); color:#fff; margin-bottom:10px; }
    .cta-strip p  { color:rgba(255,255,255,0.78); font-size:16px; margin-bottom:28px; }

    @media (max-width:1024px) {
      .stations-grid { grid-template-columns:repeat(2,1fr); }
      .process-grid  { grid-template-columns:repeat(2,1fr); }
      .inquiry-grid  { grid-template-columns:1fr; gap:40px; }
      .stats-inner   { grid-template-columns:repeat(2,1fr); }
      .stat-box:nth-child(2) { border-right:none; }
    }
    @media (max-width:768px) {
      .catering-hero-content { margin-left:0; padding:80px 20px 60px; }
      .stations-grid { grid-template-columns:1fr; }
      .events-grid   { grid-template-columns:1fr; }
      .form-row      { grid-template-columns:1fr; }
      .catering-form { padding:28px 20px; }
    }
    @media (max-width:480px) {
      .stats-inner { grid-template-columns:1fr 1fr; }
      .stat-box:nth-child(2) { border-right:1px solid rgba(255,255,255,0.07); }
      .stat-box:nth-child(even) { border-right:none; }
    }

     /* ===== DROPDOWN NAV ===== */
    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle {
      display: flex; align-items: center; gap: 5px; cursor: pointer;
      font-size: 13.5px; font-weight: 500; color: var(--text-dark);
      padding: 8px 13px; border-radius: 8px;
      transition: all var(--transition);
    }
    .nav-dropdown-toggle.active { color: var(--saffron); background: rgba(232,117,26,0.08); }
    .nav-dropdown-toggle svg { width: 10px; height: 10px; fill: currentColor; transition: transform .25s; flex-shrink: 0; }
    .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 6px); left: 0;
      background: #fff; border: 1px solid var(--border);
      border-radius: 10px; box-shadow: var(--shadow-lg);
      min-width: 172px; padding: 6px 0;
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: all .22s ease; z-index: 999;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px; font-size: 13.5px; font-weight: 500;
      color: var(--text-dark); border-radius: 0;
      transition: background .15s, color .15s;
    }
    .nav-dropdown-menu a:hover { background: rgba(232,117,26,0.07); color: var(--saffron); }
    .nav-dropdown-menu a.active { color: var(--saffron); font-weight: 600; background: rgba(232,117,26,0.06); }

    /* ===== DAY PILLS STICKY BAR ===== */
    .day-pills-bar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 68px; z-index: 800;
      box-shadow: 0 2px 12px rgba(43,17,0,0.06);
    }
    .day-pills-scroll {
      display: flex; gap: 8px; overflow-x: auto;
      padding: 10px 24px; scrollbar-width: none;
      -ms-overflow-style: none; max-width: 1180px;
      margin: 0 auto; align-items: center;
    }
    .day-pills-scroll::-webkit-scrollbar { display: none; }
    .day-pill {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 18px; font-size: 13px; font-weight: 600;
      color: var(--text-muted);
      background: rgba(107,58,31,0.07);
      border: 2px solid transparent;
      border-radius: 50px; white-space: nowrap;
      cursor: pointer; transition: all .22s;
      flex-shrink: 0; font-family: 'Poppins', sans-serif; line-height: 1;
    }
    .day-pill:hover {
      color: var(--saffron);
      background: rgba(232,117,26,0.09);
      border-color: rgba(232,117,26,0.25);
    }
    .day-pill.active {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
      color: #fff; border-color: transparent;
      box-shadow: 0 3px 12px rgba(232,117,26,0.35);
    }
    .today-badge {
      font-size: 9px; font-weight: 700; background: rgba(255,255,255,0.3);
      padding: 1px 5px; border-radius: 10px; letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .day-pill:not(.active) .today-badge {
      background: var(--saffron); color: #fff;
    }

    /* ===== DAILY MENU CONTENT ===== */
    .daily-menu-wrap { max-width: 860px; margin: 0 auto; padding: 56px 24px 72px; }

    /* Day panels */
    .day-panel { display: none; }
    .day-panel.active { display: block; animation: fadeSlide .3s ease; }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Day heading */
    .day-heading { text-align: center; margin-bottom: 48px; }
    .day-heading h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px); font-weight: 800;
      color: var(--dark-brown); margin-bottom: 8px;
    }
    .day-heading h2 span { color: var(--saffron); }
    .day-ornament {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; margin: 12px 0;
    }
    .day-ornament::before, .day-ornament::after {
      content: ''; flex: 1; max-width: 80px;
      height: 1px; background: var(--border);
    }
    .day-ornament span { color: var(--saffron); font-size: 18px; }
    .day-heading p { color: var(--text-muted); font-size: 15px; }

    /* ===== CURRY TABLE SECTION ===== */
    .dm-section { margin-bottom: 52px; }
    .dm-section-head {
      display: flex; align-items: center;
      justify-content: space-between; gap: 12px;
      margin-bottom: 20px; padding-bottom: 14px;
      border-bottom: 2px solid var(--border);
      flex-wrap: wrap;
    }
    .dm-section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3vw, 30px); font-weight: 700;
      color: var(--dark-brown);
    }
    .size-tags { display: flex; gap: 6px; }
    .size-tag {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
      color: #fff; font-size: 11.5px; font-weight: 700;
      padding: 5px 13px; border-radius: 6px; min-width: 48px;
      text-align: center; letter-spacing: 0.03em;
    }

    /* Curry rows */
    .curry-table { width: 100%; border-collapse: collapse; }
    .curry-table tbody tr {
      border-bottom: 1px solid rgba(200,160,80,0.15);
      transition: background .15s;
    }
    .curry-table tbody tr:last-child { border-bottom: none; }
    .curry-table tbody tr:hover { background: var(--light-beige); }
    .curry-table td { padding: 13px 8px; font-size: 15px; }
    .curry-table td:first-child {
      font-weight: 500; color: var(--text-dark); padding-left: 0;
    }
    .curry-table td:not(:first-child) {
      text-align: right; font-weight: 700;
      color: var(--saffron); white-space: nowrap; width: 76px;
    }
    .curry-table td:last-child { padding-right: 0; }

    /* Mobile size hint */
    .size-mobile-hint {
      display: none; font-size: 11.5px; color: var(--text-muted);
      margin-bottom: 10px; text-align: right;
    }

    /* ===== COMBO CARDS ===== */
    .combo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
    .combo-card {
      background: #fff; border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 22px 20px; display: flex; flex-direction: column; gap: 7px;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .combo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .combo-type {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--text-muted);
    }
    .type-dot { width: 9px; height: 9px; border-radius: 50%; }
    .type-dot.veg { background: #2E7D32; }
    .type-dot.nonveg { background: var(--saffron-dk); }
    .combo-name {
      font-family: 'Playfair Display', serif;
      font-size: 19px; font-weight: 700; color: var(--dark-brown);
    }
    .combo-includes { font-size: 13px; color: var(--text-muted); }
    .combo-price {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 800; color: var(--saffron);
      margin-top: 4px;
    }

    /* ===== SPECIALTY LIST ===== */
    .specialty-list { display: flex; flex-direction: column; gap: 12px; }
    .specialty-item {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; background: #fff; border-radius: 12px; padding: 16px 20px;
      box-shadow: 0 2px 10px rgba(43,17,0,0.07);
      border-left: 3px solid var(--saffron);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .specialty-item:hover { transform: translateX(3px); box-shadow: var(--shadow); }
    .specialty-info h4 { font-weight: 600; color: var(--dark-brown); font-size: 15px; margin-bottom: 4px; }
    .avail-tag {
      display: inline-block; font-size: 11px; font-weight: 600;
      color: var(--saffron-dk); background: rgba(232,117,26,0.1);
      border: 1px solid rgba(232,117,26,0.25);
      border-radius: 20px; padding: 2px 10px;
    }
    .specialty-price {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--saffron); flex-shrink: 0;
    }

    /* ===== COMING SOON ===== */
    .coming-soon {
      text-align: center; padding: 64px 24px;
      background: var(--light-beige); border-radius: var(--radius);
      border: 1px dashed var(--border);
    }
    .coming-soon .cs-emoji { font-size: 56px; margin-bottom: 16px; display: block; }
    .coming-soon h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; color: var(--dark-brown); margin-bottom: 8px;
    }
    .coming-soon p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

    /* CTA strip */
    .daily-cta {
      background: linear-gradient(135deg, var(--dark-brown) 0%, #4A1E00 100%);
      padding: 52px 0; text-align: center;
    }
    .daily-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 3vw, 32px); color: #fff; margin-bottom: 10px;
    }
    .daily-cta p { color: rgba(255,245,228,0.7); margin-bottom: 28px; font-size: 15px; }

    /* Responsive */
    @media (max-width: 768px) {
      .combo-grid { grid-template-columns: 1fr; }
      .size-tags { display: none; }
      .size-mobile-hint { display: block; }
      .curry-table td { font-size: 13.5px; }
      .curry-table td:not(:first-child) { width: 62px; }
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .main-nav, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .top-bar-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 60px 0 52px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}

/* ===== FONT AWESOME ICON HELPERS ===== */
.top-bar-item i { color: var(--mustard); font-size: 12px; flex-shrink: 0; }
.footer-contact-item i { color: var(--saffron); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-social .social-btn i { font-size: 14px; }
.live-item-icon i { color: var(--saffron); font-size: 20px; }
.c-icon i { color: var(--saffron); font-size: 15px; }
.trust-icon i { color: var(--saffron); font-size: 20px; }
.avail-tag i { font-size: 10px; }
.btn i { font-size: 13px; }
.btn-lg i { font-size: 15px; }
