:root {
  --bg: #fff8ef;
  --bg-soft: #fff2df;
  --card: rgba(255, 255, 255, 0.72);
  --text: #2c1c12;
  --muted: #6f5547;
  --primary: #c84f1f;
  --primary-dark: #9f3710;
  --accent: #f3b23f;
  --accent-soft: #ffe7b3;
  --line: rgba(85, 45, 18, 0.08);
  --shadow: 0 20px 60px rgba(108, 56, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1220px;
  --zomato: #e23744;
  --swiggy: #fc8019;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff0da 0%, transparent 25%),
    radial-gradient(circle at top right, #ffe8cf 0%, transparent 25%),
    linear-gradient(180deg, #fffaf2 0%, #fff4e5 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(200, 79, 31, 0.08);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
}

.section-head.center p {
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, #cf541f, #df6a1f, #cf541f);
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 0;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 249, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.brand-text h2 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
}

.brand-text p {
  color: var(--muted);
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-weight: 700;
  color: #4a3328;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 4% 20px;
  gap: 14px;
  background: #fff9f2;
  border-top: 1px solid var(--line);
}

.mobile-menu.active {
  display: flex;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 90px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 197, 112, 0.22), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255, 150, 82, 0.14), transparent 20%),
    radial-gradient(circle at 60% 80%, rgba(255, 208, 128, 0.15), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.hero-content h1,
.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 12ch;
}

.hero-content h1 span,
.hero-content h2 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-cta,
.order-buttons,
.contact-actions,
.order-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image{
  position:relative;
  min-height:650px;
}
.main-card{
  position:absolute;
  inset: 20px 18px 28px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.main-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center 50%;
}
.floating-card{
  position:absolute;
  width:210px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.16);
  border:6px solid rgba(255,255,255,.95);
  animation:floatY 4.8s ease-in-out infinite;
}
.floating-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.main-card img,
.floating-card img {
  transition: opacity 1.45s ease, transform 1.8s ease, filter 1.8s ease;
  transform-origin: center center;
  animation: heroCinemaPulse 9s ease-in-out infinite;
  will-change: opacity, transform, filter;
}

.main-card img {
  transition-delay: 0s;
}

.card-one img {
  transition-delay: 0.12s;
}

.card-two img {
  transition-delay: 0.24s;
}

.hero-image img.is-fading {
  opacity: 0.18;
  transform: scale(1.09);
  filter: blur(10px) saturate(1.15) brightness(1.04);
}
.card-one{
  top:-10px;
  right:-18px;
  height:218px;
}
.card-two{
  bottom:-12px;
  left:-18px;
  height:218px;
  animation-delay:1.2s;
}
@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.28s ease;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(100, 44, 16, 0.08);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-lg {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #cf541f, #b84114);
  color: white;
}

.btn-outline {
  border: 1px solid rgba(92, 52, 28, 0.14);
  background: rgba(255,255,255,0.75);
  color: var(--text);
}

.btn-soft {
  background: var(--accent-soft);
  color: #70481c;
}

.btn-zomato {
  background: var(--zomato);
  color: white;
}

.btn-swiggy {
  background: var(--swiggy);
  color: white;
}

.order-platforms {
  margin-top: 28px;
}

.order-platforms span {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--text);
}

.order-platforms .order-buttons .btn {
  min-width: 190px;
}

.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.mini-card,
.highlight-card,
.review-card,
.menu-item,
.special-card,
.order-banner-box {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 22px;
  border-radius: 20px;
}

.mini-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(123, 58, 16, 0.22);
  transform: rotate(2deg);
}

.hero-image-card img {
  width: 100%;
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.92);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.story-image img,
.contact-map iframe {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.story-image img {
  min-height: 560px;
  object-fit: cover;
}

.story-content h2,
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.story-content p,
.contact-info p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.highlight-card {
  padding: 24px;
  border-radius: 22px;
}

.highlight-card h4 {
  margin-bottom: 10px;
}

.specials-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.special-card {
  border-radius: 28px;
  overflow: hidden;
  transition: 0.35s ease;
}

.special-card:hover {
  transform: translateY(-8px);
}

.special-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.special-card-content {
  padding: 26px;
}

.dish-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.82rem;
  background: rgba(200,79,31,0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.special-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.special-card p {
  color: var(--muted);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  transition: 0.28s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 122px;
  height: 122px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-family: "Playfair Display", serif;
}

.menu-item p {
  color: var(--muted);
  line-height: 1.7;
}

.menu-box img {
  width:90%;
  border-radius:20px;
}

/* =========================
   MENU SECTION FIXED
========================= */
.menu-section {
  background: linear-gradient(180deg, #fffaf7 0%, #fdf7f3 100%);
  padding: 110px 0;
  overflow: hidden;
}

.menu-container {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 70px;
}

.menu-left {
  max-width: 680px;
}

.menu-left .section-kicker {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #8b3a3a;
  margin-bottom: 18px;
}

.menu-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 700;
}

.menu-left p {
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 38px;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 18px 22px;
  max-width: 760px;
}

.menu-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.menu-highlights span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.menu-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-board-viewer {
  width: 100%;
  max-width: 720px;
}

.menu-image-box {
  width: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  transform: translateZ(0);
  position: relative;
  padding: 0;
  cursor: pointer;
  appearance: none;
}

.menu-image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.menu-image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(44, 28, 18, 0.78);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.menu-board-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.menu-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(110, 62, 34, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(95, 48, 21, 0.06);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(95, 48, 21, 0.1);
}

.menu-thumb.is-active {
  border-color: rgba(200, 79, 31, 0.28);
  box-shadow: 0 18px 38px rgba(200, 79, 31, 0.14);
}

.menu-thumb img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.menu-thumb span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2f2017;
  text-align: left;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
}

.menu-lightbox.active {
  display: flex;
}

.menu-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 15, 7, 0.78);
  backdrop-filter: blur(8px);
}

.menu-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  max-height: 88vh;
  border-radius: 28px;
  overflow: hidden;
  background: #fff8f1;
  box-shadow: 0 26px 90px rgba(0,0,0,0.35);
}

.menu-lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.menu-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(44, 28, 18, 0.82);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .menu-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .menu-left {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .menu-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-highlights {
    max-width: 100%;
    margin: 0 auto;
  }

  .menu-right {
    order: -1;
  }

  .menu-image-box {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 85px 0;
  }

  .menu-right {
    order: initial;
  }

  .menu-left h3 {
    font-size: clamp(2.3rem, 8vw, 3.5rem);
  }

  .menu-left p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .menu-highlights {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 14px 16px;
  }

  .menu-highlights span {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .menu-image-box {
    border-radius: 22px;
  }

  .menu-board-switcher {
    gap: 10px;
    margin-bottom: 14px;
  }

  .menu-image-badge {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .menu-thumb {
    padding: 9px 10px;
    border-radius: 16px;
    gap: 10px;
  }

  .menu-thumb img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .menu-thumb span {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .menu-container {
    width: 92%;
  }

  .menu-left h3 {
    font-size: 2.1rem;
  }

  .menu-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-highlights span {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.review-card {
  padding: 30px;
  border-radius: 26px;
}

.review-card::before {
  content: "\2605 \2605 \2605 \2605 \2605";
  display: inline-block;
  margin-bottom: 14px;
  color: #e1a425;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.review-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

.review-card h4 {
  color: var(--primary-dark);
}

.order-banner-box {
  border-radius: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,244,230,0.9));
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 28px 0 34px;
}

.contact-section {
  background: linear-gradient(180deg, #fffaf4 0%, #fff6eb 100%);
}

.contact-info {
  padding: 10px 0;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info h2 {
  font-size: clamp(2.45rem, 3.7vw, 3.7rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 13ch;
}

.contact-address-lead {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-list p {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-actions {
  display: grid;
  gap: 18px;
}

.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 0 26px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.84);
  border: 1px solid rgba(173, 118, 78, 0.16);
  box-shadow: 0 12px 32px rgba(109, 56, 24, 0.06);
  color: var(--text);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(109, 56, 24, 0.1);
  border-color: rgba(200, 79, 31, 0.22);
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-action-text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-item h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  line-height: 1.8;
}

.contact-map iframe {
  min-height: 540px;
  border: 0;
}

.site-footer {
  padding: 34px 0 110px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.footer-inner p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
  color: var(--primary-dark);
}

.floating-order {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 999;
}

.floating-order-main {
  background: linear-gradient(135deg, #cf541f, #b33f15);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(173, 67, 18, 0.28);
  cursor: pointer;
}

.floating-order-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  align-items: flex-end;
}

.floating-order-links.active {
  display: flex;
}

.floating-link {
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.floating-link.zomato {
  background: var(--zomato);
}

.floating-link.swiggy {
  background: var(--swiggy);
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 251, 246, 0.94);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -18px 38px rgba(88, 43, 16, 0.12);
  z-index: 999;
}

.mobile-sticky-primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-sticky-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 62px;
  padding: 12px 14px;
  border-radius: 20px;
  color: white;
  text-align: left;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.mobile-sticky-zomato {
  background: linear-gradient(135deg, #ef4754, #cf2232);
}

.mobile-sticky-swiggy {
  background: linear-gradient(135deg, #ff9a3d, #f26b00);
}

.mobile-sticky-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
  text-transform: uppercase;
}

.mobile-sticky-cta strong {
  font-size: 1rem;
  line-height: 1.1;
}

.mobile-sticky-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.mobile-sticky-secondary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(130, 77, 43, 0.12);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .order-banner-box {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 100%;
  }

  .hero-image-card img {
    max-width: 100%;
    height: auto;
  }

  .specials-grid,
  .reviews-grid,
  .gallery-grid,
  .menu-grid,
  .hero-info-cards,
  .story-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .top-strip {
    padding: 8px 0;
  }

  .top-strip-inner {
    position: relative;
    display: block;
    height: 1.35em;
    overflow: hidden;
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center;
  }

  .top-strip-inner span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    animation: topStripRotate 9s infinite;
  }

  .top-strip-inner span:nth-child(1) {
    animation-delay: 0s;
  }

  .top-strip-inner span:nth-child(2) {
    animation-delay: 3s;
  }

  .top-strip-inner span:nth-child(3) {
    animation-delay: 6s;
  }

  .brand-text h2 {
    font-size: 1.55rem;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 54px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-image {
    order: -1;
    min-height: 390px;
    margin: 0 4px 6px;
  }

  .main-card {
    inset: 12px 8px 18px;
    border-radius: 26px;
  }

  .main-card img {
    object-position: center 52%;
  }

  .main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
  }

  .floating-card {
    width: 116px;
    border-width: 4px;
    border-radius: 18px;
  }

  .card-one {
    top: 8px;
    right: -8px;
    height: 126px;
  }

  .card-two {
    bottom: -8px;
    left: -10px;
    height: 126px;
  }

  .hero-content {
    position: relative;
    padding: 24px 20px;
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(243, 178, 63, 0.2), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,245,232,0.95));
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 22px 46px rgba(115, 57, 23, 0.12);
  }

  .eyebrow {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(200, 79, 31, 0.08);
    letter-spacing: 0.08em;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: 0.94;
    margin-bottom: 14px;
    max-width: 9ch;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .hero-buttons,
  .order-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-buttons .btn,
  .order-buttons .btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
  }

  .order-platforms {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(115, 57, 23, 0.1);
  }

  .order-platforms span {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .hero-info-cards {
    gap: 12px;
    margin-top: 22px;
  }

  .mini-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .mini-card h4,
  .mini-card p {
    margin: 0;
  }

  .mini-card h4 {
    font-size: 0.9rem;
  }

  .mini-card p {
    font-size: 0.9rem;
  }

  .specials-grid,
  .reviews-grid,
  .gallery-grid,
  .menu-grid,
  .hero-info-cards,
  .story-highlights {
    grid-template-columns: 1fr;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item img {
    width: 100%;
    height: 220px;
  }

  .gallery-grid img {
    height: 240px;
  }

  .contact-info h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.45rem);
    line-height: 1.02;
    max-width: 13ch;
  }

  .contact-address-lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .contact-list {
    margin-bottom: 22px;
  }

  .contact-action-card {
    min-height: 74px;
    padding: 0 20px;
    border-radius: 20px;
  }

  .contact-action-text {
    font-size: 0.98rem;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .floating-order {
    display: none;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .site-footer {
    padding-bottom: 148px;
  }

  .order-banner-box {
    padding: 32px 24px;
  }
}

@keyframes topStripRotate {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}






@keyframes heroCinemaPulse {
  0%, 100% {
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
  50% {
    transform: scale(1.035);
    filter: saturate(1.05) brightness(1.02);
  }
}




