:root {
  --bg: #0d0a07;
  --bg2: #13100c;
  --bg3: #1c1610;
  --surface: #221a0f;
  --card: #2a1f12;
  --border: rgba(255, 200, 120, .12);
  --saffron: #E8853A;
  --turmeric: #F5A623;
  --gold: #C9991A;
  --cream: #F2EAD8;
  --muted: #B8A892;
  --dimmed: #92836E;
  --veg: #22c55e;
  --nonveg: #ef4444;
  --text: #F0E8D8;
  --text2: #DFD6C2;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.65
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

ul {
  list-style: none
}

/* TYPOGRAPHY */
.display {
  font-family: "Playfair Display", Georgia, serif
}

.cormorant {
  font-family: "Cormorant Garamond", Georgia, serif
}

.label {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream)
}

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

/* DECORATIVE */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 133, 58, .5), transparent);
  margin: 0 auto
}

.saffron-text {
  background: linear-gradient(110deg, var(--turmeric), var(--saffron) 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.dot-veg {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1.5px solid var(--veg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.dot-veg::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--veg)
}

.dot-nonveg {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1.5px solid var(--nonveg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.dot-nonveg::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nonveg)
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.section {
  padding: 6rem 0
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  opacity: 0;
  transition: opacity .3s
}

.btn:hover::after {
  opacity: 1
}

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

.btn-primary {
  background: linear-gradient(110deg, var(--saffron), var(--turmeric));
  color: #1a0e00;
  box-shadow: 0 8px 32px -8px rgba(232, 133, 58, .7)
}

.btn-primary:hover {
  box-shadow: 0 16px 48px -8px rgba(232, 133, 58, .9)
}

.btn-outline {
  border: 1.5px solid rgba(242, 234, 216, .3);
  color: var(--cream)
}

.btn-outline:hover {
  border-color: var(--saffron);
  color: var(--saffron)
}

.btn-sm {
  padding: .6rem 1.4rem;
  font-size: .82rem
}

/* GLASS */
.glass {
  background: rgba(19, 13, 7, .75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px)
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal-delay-1 {
  transition-delay: .12s
}

.reveal-delay-2 {
  transition-delay: .24s
}

.reveal-delay-3 {
  transition-delay: .36s
}

.reveal-delay-4 {
  transition-delay: .48s
}

.reveal-delay-5 {
  transition-delay: .6s
}

/* NAVIGATION */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  transition: background .4s, box-shadow .4s;
  background: rgba(13, 10, 7, .95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 200, 120, .1)
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.nav-logo .logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cream)
}

.nav-logo .logo-main span {
  color: var(--saffron)
}

.nav-logo .logo-sub {
  font-size: .55rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-links a {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--text2);
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  right: 0;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform .3s
}

.nav-links a:hover {
  color: var(--cream)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s
}

#hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px)
}

#hamburger.is-open span:nth-child(2) {
  opacity: 0
}

#hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px)
}

#mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 10, 7, .97);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1)
}

#mobile-nav.is-open {
  transform: none
}

#mobile-nav a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--cream);
  transition: color .2s
}

#mobile-nav a:hover {
  color: var(--saffron)
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/interior.jpg') center/cover no-repeat
}

    #hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(13, 10, 7, 0.8) 0%, rgba(13, 10, 7, 0.5) 50%, rgba(13, 10, 7, 0.2) 100%)
}

.hero-food-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 760px;
  opacity: 1;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, transparent 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(232, 133, 58, .3);
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.5rem;
  background: rgba(232, 133, 58, .06)
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

.hero-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: .5rem
}

.hero-logo span {
  color: var(--saffron)
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--text2);
  margin-bottom: 1.5rem;
  letter-spacing: .04em
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 2.5rem
}

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

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.88rem;
  color: var(--dimmed);
  letter-spacing: .06em
}

.hero-location svg {
  color: var(--saffron);
  flex-shrink: 0
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2
}

.hero-scroll span {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dimmed)
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: scroll-anim 2s ease-in-out infinite
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid var(--border)
}

.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border)
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--saffron);
  line-height: 1
}

.stat-label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-top: .3rem
}

/* SIGNATURE DISHES */
#signature {
  background: var(--bg2)
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem
}

.dish-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s, border-color .5s
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px -20px rgba(0, 0, 0, .8);
  border-color: rgba(232, 133, 58, .35)
}

.dish-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden
}

.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1)
}

.dish-card:hover .dish-img-wrap img {
  transform: scale(1.07)
}

.dish-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  padding: .3rem .6rem;
  border-radius: 4px;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600
}

.dish-badge.chef {
  background: rgba(232, 133, 58, .2);
  color: var(--turmeric);
  border: 1px solid rgba(232, 133, 58, .4)
}

.dish-badge.popular {
  background: rgba(34, 197, 94, .15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, .3)
}

.dish-body {
  padding: 1.25rem
}

.dish-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem
}

.dish-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream)
}

.dish-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--saffron);
  white-space: nowrap
}

.dish-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .75rem
}

.dish-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--dimmed)
}

.spicy {
  color: #f87171
}

/* 3D SECTION */
#signature3d {
  background: var(--bg);
  overflow: hidden;
  position: relative
}

#signature3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 133, 58, .07), transparent);
  pointer-events: none
}

.sig3d-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.sig3d-left {
  position: relative
}

#dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--surface);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1)
}

#dish-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%
}

#dish-canvas-wrap:hover #dish-img {
  transform: scale(1.05)
}

.ing-tags {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.ing-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  pointer-events: auto;
  cursor: default
}

.ing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 133, 58, .3);
  animation: ing-pulse 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes ing-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(232, 133, 58, .3)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(232, 133, 58, .1)
  }
}

.ing-label {
  background: rgba(19, 13, 7, .88);
  border: 1px solid rgba(232, 133, 58, .3);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--turmeric);
  white-space: nowrap;
  backdrop-filter: blur(8px)
}

.sig3d-dish-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem
}

.sig3d-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem
}

.ing-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem
}

.ing-pill {
  padding: .35rem .9rem;
  border: 1px solid rgba(232, 133, 58, .25);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--text2);
  background: rgba(232, 133, 58, .06);
  letter-spacing: .04em;
  transition: border-color .2s, color .2s
}

.ing-pill:hover {
  border-color: var(--saffron);
  color: var(--saffron)
}

.drag-hint {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--dimmed);
  margin-bottom: 2rem
}

/* MENU */
#menu {
  background: var(--bg2)
}

.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none
}

.menu-tabs::-webkit-scrollbar {
  display: none
}

.menu-tab {
  padding: .85rem 1.4rem;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  position: relative;
  top: 1px
}

.menu-tab:hover {
  color: var(--text)
}

.menu-tab.active {
  color: var(--saffron);
  border-bottom-color: var(--saffron)
}

.menu-panel {
  display: none;
  animation: menu-in .4s ease
}

.menu-panel.active {
  display: block
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg2);
  transition: background .2s
}

.menu-item:hover {
  background: var(--bg3)
}

.menu-item-indicator {
  flex-shrink: 0;
  margin-top: 4px
}

.menu-item-body {
  flex: 1
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .25rem
}

.menu-item-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3
}

.menu-item-price {
  font-size: .88rem;
  font-weight: 600;
  color: var(--saffron);
  white-space: nowrap
}

.menu-item-desc {
  font-size: .75rem;
  color: var(--dimmed);
  line-height: 1.55
}

/* STORY */
#story {
  background: var(--bg)
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.story-img {
  border-radius: 10px;
  overflow: hidden
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1)
}

.story-img:hover img {
  transform: scale(1.05)
}

.story-img-main {
  grid-column: 1/-1;
  height: 280px
}

.story-img-small {
  height: 180px
}

.story-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.story-heading em {
  font-style: italic;
  color: var(--saffron)
}

.story-body {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem
}

.story-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border)
}

.s-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1
}

.s-stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-top: .35rem
}

/* CHEF */
#chef {
  background: var(--bg3);
  position: relative;
  overflow: hidden
}

#chef::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 133, 58, .06), transparent);
  pointer-events: none
}

.chef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.chef-img-wrap {
  position: relative
}

.chef-img-main {
  border-radius: 12px;
  overflow: hidden;
  height: 520px
}

.chef-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.chef-badge-wrap {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 200px
}

.chef-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1
}

.chef-badge-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-top: .3rem
}

.chef-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .5rem
}

.chef-role {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.5rem
}

.chef-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--saffron)
}

.chef-bio {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.85
}

.chef-skills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem
}

.chef-skill {
  padding: .3rem .8rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: .72rem;
  color: var(--text2);
  letter-spacing: .04em
}

/* EXPERIENCE */
#experience {
  background: var(--bg)
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

.exp-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer
}

.exp-card-img {
  height: 380px;
  overflow: hidden
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
  filter: brightness(.75)
}

.exp-card:hover .exp-card-img img {
  transform: scale(1.06);
  filter: brightness(.9)
}

.exp-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(13, 10, 7, .98) 0%, transparent 100%)
}

.exp-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .4rem
}

.exp-card-desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.6
}

/* GALLERY */
#gallery {
  background: var(--bg2)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: .75rem;
  margin-top: 3rem
}

.gal-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .5s
}

.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.1) saturate(1.1)
}

.gal-item.large {
  grid-column: span 2;
  grid-row: span 2
}

.gal-item.wide {
  grid-column: span 2
}

.gal-item.tall {
  grid-row: span 2
}

/* REVIEWS */
#reviews {
  background: var(--bg)
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color .3s, transform .3s
}

.review-card:hover {
  border-color: rgba(232, 133, 58, .3);
  transform: translateY(-4px)
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--turmeric));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a0e00;
  flex-shrink: 0
}

.review-stars {
  color: var(--turmeric);
  font-size: .9rem;
  letter-spacing: .1em
}

.review-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem
}

.review-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2)
}

.review-platform {
  font-size: .68rem;
  color: var(--dimmed);
  letter-spacing: .08em;
  margin-top: .15rem
}

.zomato {
  color: #e23744
}

.google-c {
  color: #4ade80
}

/* RESERVATION */
#reservation {
  background: var(--bg2);
  position: relative;
  overflow: hidden
}

#reservation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/interior.jpg') center/cover no-repeat;
  opacity: .03
}

.res-bg-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .07;
  pointer-events: none
}

.res-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.res-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start
}

.res-subheading {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem
}

.res-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.res-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.res-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(232, 133, 58, .1);
  border: 1px solid rgba(232, 133, 58, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--saffron)
}

.res-info-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-bottom: .2rem
}

.res-info-value {
  font-size: .88rem;
  color: var(--text2)
}

.res-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem
}

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

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

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dimmed)
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .75rem 1rem;
  font-size: .88rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  width: 100%
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron)
}

.form-group select option {
  background: var(--bg2)
}

.form-group textarea {
  resize: vertical;
  min-height: 90px
}

.res-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem
}

.res-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem
}

.res-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: .75rem
}

.res-success p {
  font-size: .88rem;
  color: var(--muted)
}

/* ORDER */
#order {
  background: var(--bg);
  text-align: center
}

.order-inner {
  max-width: 680px;
  margin: 0 auto
}

.order-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem
}

.order-subtext {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.order-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.order-platforms {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.order-platform {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--dimmed)
}

.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

/* LOCATION */
#location {
  background: var(--bg2)
}

.loc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  background: var(--bg3);
  border: 1px solid var(--border);
  position: relative
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, var(--bg3), var(--surface));
  text-align: center
}

.map-icon {
  font-size: 2.5rem
}

.map-addr {
  font-size: .85rem;
  color: var(--muted)
}

.hours-table {
  width: 100%;
  border-collapse: collapse
}

.hours-table tr {
  border-bottom: 1px solid var(--border)
}

.hours-table tr:last-child {
  border-bottom: none
}

.hours-table td {
  padding: .85rem 0;
  font-size: .85rem
}

.hours-table td:first-child {
  color: var(--muted)
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text2)
}

.loc-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.phone-display {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--saffron);
  margin-top: 1.5rem
}

/* CLIENT PITCH */
#client-pitch {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.pitch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap
}

.pitch-eyebrow {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-bottom: .75rem
}

.pitch-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .75rem
}

.pitch-desc {
  font-size: .88rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75
}

/* MODAL */
#client-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem
}

#client-modal.open {
  display: flex
}

.modal-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .2s
}

.modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--cream)
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: .5rem
}

.modal-sub {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2rem
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

/* FOOTER */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: var(--cream);
  margin-bottom: .25rem
}

.footer-brand-name span {
  color: var(--saffron)
}

.footer-brand-sub {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-bottom: 1.25rem
}

.footer-brand-desc {
  font-size: .82rem;
  color: var(--dimmed);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem
}

.footer-social {
  display: flex;
  gap: .75rem
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s
}

.social-link:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232, 133, 58, .08)
}

.footer-col-title {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.25rem
}

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

.footer-links a {
  font-size: .82rem;
  color: var(--dimmed);
  transition: color .2s
}

.footer-links a:hover {
  color: var(--text)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-copy {
  font-size: .75rem;
  color: var(--dimmed)
}

.footer-copy a {
  color: var(--saffron)
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: .88rem;
  font-style: italic;
  color: var(--dimmed)
}

/* GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .015;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.5'/></svg>")
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .sig3d-inner {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .chef-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr
  }

  .res-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .loc-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .hero-food-img {
    opacity: .35
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  #hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch
  }

  .hero-content {
    margin-bottom: 2rem
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-bottom: 1px solid var(--border);
    margin-top: auto
  }

  .hero-scroll {
    display: none
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(13, 10, 7, 0.88) 0%, rgba(13, 10, 7, 0.78) 50%, rgba(13, 10, 7, 0.88) 100%) !important
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  #hamburger {
    display: flex
  }

  .exp-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .gal-item.large {
    grid-column: span 2;
    height: 260px
  }

  .gal-item.wide {
    grid-column: span 2
  }

  .gal-item.tall {
    grid-row: span 1
  }

  .gal-item {
    height: 200px
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .modal-form-grid {
    grid-template-columns: 1fr
  }

  .pitch-inner {
    flex-direction: column;
    gap: 2rem
  }

  .story-imgs {
    grid-template-columns: 1fr
  }

  .story-img-main {
    height: 240px
  }
}

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

  .dishes-grid,
  .reviews-grid {
    grid-template-columns: 1fr
  }

  .menu-grid {
    grid-template-columns: 1fr
  }
}

.menu-grid {
  grid-template-columns: 1fr
}
}