/* ═══════════════════════════════════════════════
   GAZAB BA RESTAURANT — styles.css
   Claymorphism + Minimal Flat | Indian Aesthetic
═══════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  /* Palette */
  --cream:         #FBF3E3;
  --cream-dark:    #F5E5C8;
  --cream-medium:  #FFF8EE;
  --saffron:       #E8871A;
  --saffron-light: #F5A840;
  --turmeric:      #F0B12A;
  --maroon:        #8B1A1A;
  --maroon-light:  #C44343;
  --copper:        #B87333;
  --copper-light:  #D4924A;
  --green:         #4A7C59;
  --dark:          #1A0B04;
  --charcoal:      #3D2214;
  --warm-gray:     #8C7B6E;
  --warm-gray-lt:  #C4B5A8;
  --white:         #FEFEFE;
  --card-white:    #FFFAF2;

  /* Typography */
  --font-display:  'Rozha One', serif;
  --font-heading:  'Libre Baskerville', serif;
  --font-body:     'Nunito', sans-serif;

  /* Radius */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  /* Shadows (clay-style) */
  --shadow-clay: 5px 8px 20px rgba(58, 27, 9, 0.12),
                 inset 2px 2px 5px rgba(255, 255, 255, 0.65),
                 inset -1px -1px 4px rgba(58, 27, 9, 0.06);
  --shadow-lift: 8px 14px 32px rgba(58, 27, 9, 0.18),
                 inset 2px 2px 6px rgba(255, 255, 255, 0.7);
  --shadow-dark-clay: 5px 8px 20px rgba(0, 0, 0, 0.3),
                      inset 2px 2px 6px rgba(255, 255, 255, 0.08),
                      inset -1px -1px 4px rgba(0, 0, 0, 0.2);

  /* Spacing */
  --sp-section: clamp(3.5rem, 7vw, 6rem);
  --sp-xl:      clamp(2rem, 4vw, 3.5rem);
  --sp-lg:      clamp(1.5rem, 3vw, 2.5rem);
  --container:  1200px;

  /* Transitions */
  --t-fast:   0.2s ease;
  --t-mid:    0.35s ease;
  --t-slow:   0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
em { font-style: italic; }
textarea, input, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section { padding: var(--sp-section) 0; position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: var(--sp-xl); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(184, 115, 51, 0.12);
  padding: 0.35em 1em;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(184, 115, 51, 0.25);
}

.light-tag {
  color: var(--saffron-light);
  background: rgba(245, 168, 64, 0.15);
  border-color: rgba(245, 168, 64, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.2;
}

.section-title em {
  color: var(--maroon);
  font-style: italic;
}

.light-title { color: var(--cream); }
.light-title em { color: var(--saffron-light); }

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--warm-gray);
  max-width: 600px;
  margin: 1rem auto 0;
}

.light-sub { color: rgba(255, 248, 238, 0.75); }

.hide-mob { display: inline; }

/* ─── CLAY CARDS ─── */
.clay-card {
  background: var(--card-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-clay);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.clay-card-dark {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-dark-clay);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--maroon);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.78em 1.8em;
  border-radius: 50px;
  border: 2px solid var(--maroon);
  transition: var(--t-mid);
  box-shadow: 3px 4px 12px rgba(139, 26, 26, 0.3);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--maroon-light);
  border-color: var(--maroon-light);
  transform: translateY(-2px);
  box-shadow: 4px 8px 20px rgba(139, 26, 26, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.75em 1.8em;
  border-radius: 50px;
  border: 2px solid var(--maroon);
  transition: var(--t-mid);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--maroon);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75em 1.8em;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--t-mid);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

.btn-full { width: 100%; justify-content: center; }

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75em 1.6em;
  border-radius: 50px;
  border: 2px solid;
  transition: var(--t-mid);
  white-space: nowrap;
}

.btn-platform svg { width: 18px; height: 18px; }

.btn-platform.zomato {
  background: #E23744;
  color: white;
  border-color: #E23744;
}
.btn-platform.zomato:hover { background: #C42C38; transform: translateY(-2px); }

.btn-platform.swiggy {
  background: #FC8019;
  color: white;
  border-color: #FC8019;
}
.btn-platform.swiggy:hover { background: #E07015; transform: translateY(-2px); }

.btn-nav-cta {
  background: var(--saffron);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6em 1.4em;
  border-radius: 50px;
  border: none;
  transition: var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 2px 3px 10px rgba(232, 135, 26, 0.35);
}

.btn-nav-cta:hover { background: var(--saffron-light); transform: translateY(-1px); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 243, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(184, 115, 51, 0.15);
  transition: box-shadow var(--t-mid), background var(--t-mid);
}

.navbar.scrolled {
  background: rgba(251, 243, 227, 0.98);
  box-shadow: 0 4px 24px rgba(58, 27, 9, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: clamp(56px, 7vw, 70px);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-hindi {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--maroon);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 1.5vw, 0.82rem);
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: width var(--t-mid);
}

.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast), width var(--t-mid);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(139, 26, 26, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 70%, rgba(61, 34, 20, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 50% 50%, #2D1410 0%, #1A0B04 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z'/%3E%3Cpath d='M30 15L45 30L30 45L15 30Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-arch {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 135, 26, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(232, 135, 26, 0.1);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.hero-content { z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 135, 26, 0.15);
  border: 1px solid rgba(232, 135, 26, 0.35);
  color: var(--saffron-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4em 1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--saffron-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(251, 243, 227, 0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-sub em { color: var(--saffron-light); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1;
}

.stat-star { color: var(--turmeric); }

.stat-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(251, 243, 227, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ─── HERO VISUAL (Decorative Plate) ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-plate {
  position: relative;
  width: clamp(260px, 35vw, 420px);
  height: clamp(260px, 35vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}

.outer-ring {
  inset: 0;
  border-color: rgba(232, 135, 26, 0.25);
  animation: spin 20s linear infinite;
}

.inner-ring {
  inset: 12%;
  border-color: rgba(184, 115, 51, 0.4);
  border-style: dashed;
  animation: spin 12s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.plate-center {
  width: 65%;
  height: 65%;
  background: radial-gradient(circle at 35% 35%, rgba(232, 135, 26, 0.2) 0%, rgba(139, 26, 26, 0.15) 100%);
  border-radius: 50%;
  border: 2px solid rgba(232, 135, 26, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(232, 135, 26, 0.15);
}

.plate-dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pd {
  font-size: clamp(1.5rem, 3vw, 2rem);
  animation: float-pd 3s ease-in-out infinite;
}

.pd-1 { animation-delay: 0s; }
.pd-2 { animation-delay: 0.75s; }
.pd-3 { animation-delay: 1.5s; }
.pd-4 { animation-delay: 2.25s; }

@keyframes float-pd {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.plate-label {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-style: italic;
  color: rgba(251, 243, 227, 0.6);
  letter-spacing: 0.1em;
}

.hero-spice {
  position: absolute;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  animation: float-spice 4s ease-in-out infinite;
  pointer-events: none;
}

.spice-1 { top: 8%; right: 10%; animation-delay: 0s; }
.spice-2 { bottom: 15%; right: 5%; animation-delay: 1.5s; }
.spice-3 { top: 15%; left: 8%; animation-delay: 0.8s; }

@keyframes float-spice {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(12deg); }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg { width: 100%; height: auto; display: block; }

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 1 / 1.1;
  max-width: 440px;
  margin: 0 auto;
}

.about-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream-dark) 0%, var(--cream-medium) 100%);
  border-radius: var(--r-xl);
  border: 2px solid rgba(184, 115, 51, 0.2);
  box-shadow: var(--shadow-clay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}

.about-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23B87333' fill-opacity='0.1'/%3E%3C/svg%3E");
}

/* Tandoor Art */
.tandoor-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tandoor-body {
  width: 80px; height: 100px;
  background: linear-gradient(160deg, #6B3A2A, #3D1E14);
  border-radius: 40px 40px 20px 20px;
  box-shadow: inset -4px 4px 12px rgba(0,0,0,0.3), 4px 4px 16px rgba(0,0,0,0.2);
  position: relative;
}

.tandoor-top {
  width: 60px; height: 20px;
  background: linear-gradient(160deg, #8B4A30, #5A2A1A);
  border-radius: 50% 50% 0 0;
  margin-bottom: -2px;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
}

.tandoor-flame {
  font-size: 2.2rem;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scale(1); }
  25% { transform: translateX(-52%) scale(1.1); }
  75% { transform: translateX(-48%) scale(0.95); }
}

.tandoor-smoke {
  position: absolute;
  width: 8px; height: 8px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  animation: smoke-rise 3s ease-out infinite;
}

.s1 { top: -30px; left: 50%; animation-delay: 0s; }
.s2 { top: -45px; left: 55%; animation-delay: 1s; width: 6px; height: 6px; }
.s3 { top: -38px; left: 44%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes smoke-rise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-30px) scale(2.5); }
}

.about-spices {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
}

.about-tag-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: var(--maroon);
  border-radius: var(--r-md);
  box-shadow: 4px 6px 16px rgba(139, 26, 26, 0.35);
  border: none;
  color: var(--cream);
}

.tag-icon { font-size: 1.5rem; }

.about-tag-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.about-tag-card small {
  font-size: 0.7rem;
  color: rgba(251, 243, 227, 0.7);
}

.motif-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--copper));
  border-radius: 4px;
  margin: 1.25rem 0 1.5rem;
}

.about-text p {
  color: var(--charcoal);
  font-size: 1.0rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.about-text p strong { color: var(--maroon); font-weight: 700; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.tag-pill {
  background: var(--cream-dark);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4em 1.1em;
  border-radius: 50px;
  border: 1.5px solid rgba(184, 115, 51, 0.2);
  box-shadow: 2px 2px 6px rgba(58, 27, 9, 0.08),
              inset 1px 1px 3px rgba(255,255,255,0.7);
  transition: var(--t-fast);
}

.tag-pill:hover {
  background: var(--saffron);
  color: var(--dark);
  border-color: var(--saffron);
  transform: translateY(-1px);
}

/* ─── DISHES ─── */
.dishes { background: #FFF8EE; }

.dishes-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B87333' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3Ccircle cx='40' cy='40' r='25' fill='none' stroke='%23B87333' stroke-opacity='0.05' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1.25rem;
  margin-bottom: var(--sp-xl);
  position: relative;
  z-index: 1;
}

.dish-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  background: var(--card-white);
  cursor: default;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.dish-emoji-wrap {
  width: 60px; height: 60px;
  background: var(--card-light, #FFF0EE);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid;
  border-color: var(--card-color, var(--copper));
  box-shadow: 3px 3px 10px rgba(58,27,9,0.1);
  transition: transform var(--t-mid);
  flex-shrink: 0;
}

.dish-card:hover .dish-emoji-wrap {
  transform: rotate(-8deg) scale(1.1);
}

.dish-info h3 {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.dish-info p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.dish-tag {
  display: inline-block;
  background: var(--card-color, var(--saffron));
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 50px;
}

.dishes-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── OFFERS ─── */
.offers {
  background: linear-gradient(135deg, #1A0B04 0%, #3D1A0A 40%, #8B1A1A 100%);
  position: relative;
}

.offers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 30L30 55L5 30Z' fill='none' stroke='%23E8871A' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.offer-card {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 16px 40px rgba(0, 0, 0, 0.4), inset 2px 2px 6px rgba(255,255,255,0.1);
}

.offer-icon { font-size: 2rem; }

.offer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  background: rgba(245, 168, 64, 0.15);
  padding: 0.3em 0.85em;
  border-radius: 50px;
  border: 1px solid rgba(245, 168, 64, 0.3);
  width: fit-content;
}

.offer-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  line-height: 1;
}

.offer-value span {
  font-family: var(--font-body);
  font-size: 0.5em;
  font-weight: 700;
  color: var(--saffron-light);
  vertical-align: super;
}

.offer-desc {
  font-size: 0.87rem;
  color: rgba(251, 243, 227, 0.65);
  line-height: 1.6;
}

.offer-highlight {
  background: rgba(232, 135, 26, 0.12);
  border-color: rgba(232, 135, 26, 0.25) !important;
}

.offer-highlight .offer-value { color: var(--saffron-light); }

.offer-ribbon {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--saffron);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 2.5em;
  transform: rotate(35deg);
}

.btn-offer {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55em 1.4em;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.25rem;
  transition: var(--t-fast);
  cursor: pointer;
  width: fit-content;
}

.btn-offer:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* ─── WHY US ─── */
.why-us { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem;
}

.why-card {
  padding: 2rem 1.75rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.why-icon {
  width: 60px; height: 60px;
  background: var(--wi-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 10px rgba(58,27,9,0.08),
              inset 1px 1px 4px rgba(255,255,255,0.8);
  transition: transform var(--t-mid);
}

.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--cream-dark);
  position: relative;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23B87333' fill-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.rating-stars {
  font-size: 1.5rem;
  color: var(--turmeric);
  letter-spacing: 2px;
}

.half-star {
  position: relative;
  color: var(--warm-gray-lt);
}

.half-star::before {
  content: '★';
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--turmeric);
}

.rating-display strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.reviews-carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 calc(50% - 0.625rem);
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  font-size: 1.1rem;
  color: var(--turmeric);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--av-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.reviewer small {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-white);
  color: var(--charcoal);
  font-size: 1.2rem;
  border: 2px solid rgba(184, 115, 51, 0.2);
  box-shadow: var(--shadow-clay);
  transition: var(--t-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  transform: scale(1.08);
}

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

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warm-gray-lt);
  cursor: pointer;
  transition: var(--t-fast);
}

.dot.active {
  background: var(--maroon);
  width: 24px;
  border-radius: 4px;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--dark);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 0.75rem;
}

.gallery-item {
  background: linear-gradient(135deg, var(--gi-c1), var(--gi-c2));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 2; }

.gi-large { grid-column: span 2; grid-row: span 2; }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

.gi-emoji {
  font-size: clamp(2.5rem, 5vw, 4rem);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform var(--t-mid);
  z-index: 1;
}

.gallery-item:hover .gi-emoji { transform: scale(1.15); }

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--t-mid);
}

.gallery-item:hover .gi-overlay { opacity: 1; }

.gi-overlay span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 2, 0.94);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
  backdrop-filter: blur(8px);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  line-height: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-art {
  width: min(380px, 80vw);
  height: min(380px, 80vw);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(7rem, 20vw);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  text-align: center;
}

/* ─── CONTACT ─── */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 6px rgba(58,27,9,0.1);
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.65;
}

.contact-item em { color: var(--warm-gray); font-size: 0.82rem; }

.contact-item a {
  color: var(--maroon);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color var(--t-fast);
}

.contact-item a:hover { color: var(--saffron); }

.contact-order-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1.5px solid var(--cream-dark);
}

.map-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-medium), var(--cream-dark));
}

.map-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.map-pin-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.map-pin { font-size: 3.5rem; position: relative; z-index: 2; animation: bounce-pin 2s ease-in-out infinite; }

@keyframes bounce-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(139, 26, 26, 0.3);
  animation: ripple 2.5s ease-out infinite;
}

.r1 { width: 60px; height: 60px; animation-delay: 0s; }
.r2 { width: 90px; height: 90px; animation-delay: 0.6s; }
.r3 { width: 120px; height: 120px; animation-delay: 1.2s; }

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.map-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
}

.map-sub {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: -0.5rem;
}

.btn-map {
  display: inline-block;
  background: var(--maroon);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7em 1.5em;
  border-radius: 50px;
  border: 2px solid var(--maroon);
  transition: var(--t-mid);
  margin-top: 0.5rem;
}

.btn-map:hover { background: var(--maroon-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: var(--sp-section) 0 0;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23B87333' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--sp-xl);
  position: relative;
  z-index: 1;
}

.footer .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer .logo-hindi { color: var(--saffron-light); }
.footer .logo-text { color: var(--warm-gray-lt); }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(251, 243, 227, 0.5);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  border: 1.5px solid;
  transition: var(--t-fast);
}

.zomato-pill { color: #E23744; border-color: rgba(226, 55, 68, 0.4); }
.zomato-pill:hover { background: rgba(226, 55, 68, 0.15); }
.swiggy-pill { color: #FC8019; border-color: rgba(252, 128, 25, 0.4); }
.swiggy-pill:hover { background: rgba(252, 128, 25, 0.15); }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(251, 243, 227, 0.55);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--saffron-light); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(251, 243, 227, 0.55);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-contact a { color: var(--saffron-light); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(251, 243, 227, 0.3);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 2, 0.7);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
  backdrop-filter: blur(6px);
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  width: 100%;
  max-width: 580px;
  max-height: 90svh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  animation: modal-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-dark) transparent;
}

.modal-overlay:not(.open) .modal-box { animation: none; }

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  border: 1.5px solid rgba(184, 115, 51, 0.2);
  line-height: 1;
}

.modal-close:hover { background: var(--maroon); color: white; }

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.reservation-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--dark);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 135, 26, 0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-top: 0.5rem;
}

.form-note a { color: var(--maroon); font-weight: 700; }

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.success-icon { font-size: 3.5rem; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 340px;
  line-height: 1.7;
}

/* ─── FLOATING ACTIONS ─── */
.float-actions {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 700;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.float-btn svg { width: 24px; height: 24px; }

.float-wa { background: #25D366; color: white; }
.float-call { background: var(--maroon); color: white; }
.float-top { background: var(--saffron); color: var(--dark); cursor: pointer; }

/* ─── SCROLL REVEAL ─── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right { transform: translateX(40px); }

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children in grids */
.dishes-grid .dish-card:nth-child(1)  { transition-delay: 0.05s; }
.dishes-grid .dish-card:nth-child(2)  { transition-delay: 0.10s; }
.dishes-grid .dish-card:nth-child(3)  { transition-delay: 0.15s; }
.dishes-grid .dish-card:nth-child(4)  { transition-delay: 0.20s; }
.dishes-grid .dish-card:nth-child(5)  { transition-delay: 0.25s; }
.dishes-grid .dish-card:nth-child(6)  { transition-delay: 0.30s; }
.dishes-grid .dish-card:nth-child(7)  { transition-delay: 0.35s; }
.dishes-grid .dish-card:nth-child(8)  { transition-delay: 0.40s; }
.dishes-grid .dish-card:nth-child(9)  { transition-delay: 0.45s; }
.dishes-grid .dish-card:nth-child(10) { transition-delay: 0.50s; }
.dishes-grid .dish-card:nth-child(11) { transition-delay: 0.55s; }
.dishes-grid .dish-card:nth-child(12) { transition-delay: 0.60s; }
.dishes-grid .dish-card:nth-child(13) { transition-delay: 0.65s; }

.why-grid .why-card:nth-child(1) { transition-delay: 0.05s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.10s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.15s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.20s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.25s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.30s; }

.offers-grid .offer-card:nth-child(1) { transition-delay: 0.05s; }
.offers-grid .offer-card:nth-child(2) { transition-delay: 0.12s; }
.offers-grid .offer-card:nth-child(3) { transition-delay: 0.19s; }
.offers-grid .offer-card:nth-child(4) { transition-delay: 0.26s; }
.offers-grid .offer-card:nth-child(5) { transition-delay: 0.33s; }

/* ═══ RESPONSIVE ═══ */

/* Large screens */
@media (min-width: 1400px) {
  .dishes-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-rows: repeat(3, 220px); }
}

/* Tablets (Portrait) */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 380px; margin: 0 auto 2rem; }
  .about-img-frame { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gi-large { grid-column: span 2; grid-row: span 1; }
  .gi-tall, .gi-wide { grid-column: span 1; grid-row: span 1; }
}

/* Mobile */
@media (max-width: 768px) {
  .hide-mob { display: none; }

  /* Navbar */
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: -8px 0 32px rgba(58, 27, 9, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 800;
    border-left: 2px solid rgba(184, 115, 51, 0.15);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(184, 115, 51, 0.1); }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .nav-links a::after { display: none; }

  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding-top: 5rem; padding-bottom: 5rem; }
  .hero-plate { width: min(240px, 70vw); height: min(240px, 70vw); }

  /* Dishes */
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 0px); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gi-large, .gi-tall, .gi-wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 140px; }

  /* About */
  .about-tag-card { bottom: -15px; right: -10px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }

  /* Modal */
  .form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 1.5rem; }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary,
  .hero-btns .btn-platform,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 120px; }
  .float-actions { bottom: 1.25rem; right: 1.25rem; }
  .float-btn { width: 46px; height: 46px; }
}

/* Focus accessibility */
:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
