/* ==========================================================================
   AROMA BITES COCHIN — PREMIUM EDITORIAL DESIGN SYSTEM
   Colors: Deep Forest (#1F3A32), Dark Moss (#26443A), Warm Cream (#F7F3EB),
           Soft Beige (#EAE1D0), Muted Gold (#B89B5E), Zomato Red (#E23744)
   ========================================================================== */

/* ---------------- 1. CSS VARIABLES ---------------- */
:root {
  --forest-primary: #1F3A32;
  --forest-dark: #12241F;
  --forest-deep: #0A1613;
  --moss-card: #26443A;
  --moss-light: #345B4E;
  
  --cream-bg: #F7F3EB;
  --cream-alt: #F0EADB;
  --beige-sand: #EAE1D0;
  --card-white: #FFFFFF;
  
  --gold-accent: #B89B5E;
  --gold-light: #D6BD88;
  --gold-subtle: rgba(184, 155, 94, 0.15);
  
  --text-main: #1A1A1A;
  --text-muted: #58635F;
  --text-light: #87928E;
  --text-white: #FFFFFF;
  
  --zomato-red: #E23744;
  --zomato-dark: #C92532;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1EBE5D;
  
  --diet-veg: #2E7D32;
  --diet-nonveg: #C62828;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  
  --header-height: 72px;
  --ease-snappy: cubic-bezier(0.2, 0.9, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--cream-bg);
  color: var(--text-main);
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

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

.w-100 { width: 100%; }
.mb-2 { margin-bottom: 10px; }

/* ---------------- 4. BUTTON SYSTEM ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-snappy);
  white-space: nowrap;
}

.btn-zomato {
  background-color: var(--zomato-red);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(226, 55, 68, 0.35);
}

.btn-zomato:hover {
  background-color: var(--zomato-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 55, 68, 0.5);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background-color: #FFFFFF;
  color: var(--forest-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-forest {
  background-color: var(--forest-primary);
  color: #FFFFFF;
}

.btn-forest:hover {
  background-color: var(--forest-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold-accent);
  color: var(--forest-dark);
  font-weight: 700;
}

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

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--forest-dark);
  transform: translateY(-2px);
}

.btn-whatsapp-drawer {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-drawer:hover {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
}

/* ---------------- 5. MINIMALIST EDITORIAL HEADER & LOGO ---------------- */
.editorial-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10, 22, 19, 0.85) 0%, rgba(10, 22, 19, 0.5) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.editorial-header.scrolled {
  background-color: rgba(18, 36, 31, 0.98);
  border-bottom: 1px solid rgba(184, 155, 94, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
}

.header-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #000000;
  border: 1px solid rgba(184, 155, 94, 0.4);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
}

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

.nav-item {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.nav-item:hover {
  color: #FFFFFF;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-light);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------------- 6. MOBILE DRAWER ---------------- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 22, 19, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background-color: var(--forest-dark);
  color: #FFFFFF;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-snappy);
  overflow-y: auto;
}

.mobile-drawer-overlay.open .mobile-drawer-inner {
  transform: translateX(0);
}

.drawer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid rgba(184, 155, 94, 0.35);
}

.drawer-brand-text {
  display: flex;
  flex-direction: column;
}

.drawer-close-btn {
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1;
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream-bg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.drawer-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

/* ---------------- 7. HERO SECTION ---------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--forest-deep);
  color: #FFFFFF;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  animation: heroCinematic 20s infinite alternate ease-in-out;
}

@keyframes heroCinematic {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-scrim-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 19, 0.55) 0%,
    rgba(10, 22, 19, 0.7) 50%,
    rgba(10, 22, 19, 0.92) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 155, 94, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold-accent);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-location-text {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-location-text i {
  color: var(--gold-accent);
}

.hero-action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.scroll-track {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPing 2s infinite ease-in-out;
}

@keyframes scrollPing {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------- 8. ESSENCE & SLOW LIVING (HORIZONTAL CAROUSEL) ---------------- */
.story-section {
  padding: 110px 0;
  background-color: var(--forest-dark);
  color: #FFFFFF;
  overflow: hidden;
}

.story-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.25;
}

.story-slider-controls {
  display: flex;
  gap: 12px;
}

.story-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--moss-card);
  border: 1px solid rgba(184, 155, 94, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.story-nav-btn:hover {
  background-color: var(--gold-accent);
  color: var(--forest-dark);
  transform: scale(1.05);
}

.story-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0 20px;
}

.story-slider-container::-webkit-scrollbar {
  display: none;
}

.story-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.story-slide-card {
  width: 340px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, var(--moss-card) 0%, #1c362e 100%);
  border: 1px solid rgba(184, 155, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-snappy);
  cursor: pointer;
  flex-shrink: 0;
}

.story-slide-card:hover, .story-slide-card.active {
  border-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, #2d5045 0%, #203e35 100%);
}

.slide-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.slide-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  opacity: 0.85;
}

.slide-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.slide-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  flex-grow: 1;
}

.slide-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.story-slider-progress {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  margin-top: 20px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 20%;
  height: 100%;
  background-color: var(--gold-light);
  transition: width 0.3s ease;
}

/* ---------------- 9. ATMOSPHERE / MAGAZINE SPREAD ---------------- */
.ambience-section {
  padding: 120px 0;
  background-color: var(--cream-bg);
}

.editorial-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.eyebrow-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--forest-primary);
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background-color: var(--gold-accent);
}

.eyebrow-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.magazine-layout-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.magazine-layout-row.row-reversed {
  grid-template-columns: 0.95fr 1.05fr;
  margin-bottom: 0;
}

.magazine-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 36, 31, 0.12);
  aspect-ratio: 4 / 3;
  background-color: var(--beige-sand);
}

.magazine-frame.frame-detail {
  aspect-ratio: 4 / 3.2;
}

.magazine-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-snappy);
}

.magazine-frame:hover .magazine-photo {
  transform: scale(1.04);
}

.photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 19, 0.8) 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.kicker-gold {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 12px;
}

.magazine-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--forest-primary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.magazine-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.editorial-quote-card {
  padding-left: 18px;
  border-left: 2px solid var(--gold-accent);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--forest-primary);
  line-height: 1.6;
}

.amenities-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--forest-primary);
}

.amenity-item i {
  color: var(--gold-accent);
  font-size: 0.95rem;
}

/* ---------------- 10. CORE VALUES (SYMMETRICAL 3D SLIDING CARDS DECK) ---------------- */
.experience-section {
  padding: 120px 0 140px;
  background-color: var(--forest-dark);
  color: #FFFFFF;
  position: relative;
}

.editorial-eyebrow-row.light-mode .eyebrow-num {
  color: var(--gold-light);
}

.editorial-eyebrow-row.light-mode .eyebrow-label {
  color: rgba(255, 255, 255, 0.6);
}

.deck-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.deck-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.deck-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.deck-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.deck-counter {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-right: 6px;
}

.deck-counter strong {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.deck-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--moss-card);
  border: 1px solid rgba(184, 155, 94, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.deck-btn:hover {
  background-color: var(--gold-accent);
  color: var(--forest-dark);
  transform: scale(1.05);
}

/* Symmetrical Stacked 3D Deck */
.stacked-deck-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  height: 380px;
}

.deck-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--moss-card) 0%, #1a362e 100%);
  border: 1.5px solid rgba(184, 155, 94, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 38px 44px;
  transition: transform 0.35s var(--ease-snappy), opacity 0.35s ease, z-index 0.35s ease, border-color 0.3s ease;
  user-select: none;
  cursor: grab;
}

.deck-card:active {
  cursor: grabbing;
}

/* Deck Depth Positions */
.deck-pos-0 {
  transform: translateY(0) scale(1);
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  border-color: var(--gold-accent);
}

.deck-pos-1 {
  transform: translateY(22px) scale(0.95);
  z-index: 9;
  opacity: 0.85;
  pointer-events: none;
}

.deck-pos-2 {
  transform: translateY(44px) scale(0.90);
  z-index: 8;
  opacity: 0.65;
  pointer-events: none;
}

.deck-pos-3 {
  transform: translateY(66px) scale(0.85);
  z-index: 7;
  opacity: 0.4;
  pointer-events: none;
}

.deck-slide-left {
  transform: translateX(-120%) rotate(-5deg) scale(0.9) !important;
  opacity: 0 !important;
}

.deck-slide-right {
  transform: translateX(120%) rotate(5deg) scale(0.9) !important;
  opacity: 0 !important;
}

.deck-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.deck-big-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.9;
}

.deck-pill {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(184, 155, 94, 0.2);
}

.deck-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.deck-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.deck-footer-tags {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: var(--gold-light);
  flex-wrap: wrap;
}

.deck-footer-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------------- 11. COMPLETE MENU SECTION ---------------- */
.menu-section {
  padding: 120px 0;
  background-color: var(--cream-bg);
}

.menu-kicker-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.menu-lead-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: var(--forest-primary);
  margin-bottom: 8px;
}

.menu-lead-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

/* In-Page Tabs Filter */
.inpage-menu-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.inpage-tab-btn {
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background-color: var(--card-white);
  border: 1px solid rgba(31, 58, 50, 0.15);
  color: var(--forest-primary);
  transition: all 0.25s ease;
}

.inpage-tab-btn.active, .inpage-tab-btn:hover {
  background-color: var(--forest-primary);
  color: #FFFFFF;
  border-color: var(--forest-primary);
}

/* Comprehensive Menu Grid */
.menu-complete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.menu-item-card {
  background-color: var(--card-white);
  border: 1px solid rgba(31, 58, 50, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s var(--ease-snappy);
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(31, 58, 50, 0.08);
  border-color: var(--gold-accent);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.item-tag-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background-color: var(--cream-bg);
  color: var(--gold-accent);
  border: 1px solid rgba(184, 155, 94, 0.3);
}

.item-diet {
  font-size: 0.65rem;
}

.item-diet.veg {
  color: var(--diet-veg);
}

.item-diet.non-veg {
  color: var(--diet-nonveg);
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.menu-action-banner {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--card-white);
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.banner-text h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--forest-primary);
  margin-bottom: 4px;
}

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

.banner-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------- 12. HEROIC ORDER ON ZOMATO SECTION ---------------- */
.order-cta-section {
  padding: 120px 0;
  background-color: var(--forest-deep);
  color: #FFFFFF;
}

.order-card-heroic {
  background: linear-gradient(135deg, var(--forest-primary) 0%, #152923 100%);
  border: 1px solid rgba(184, 155, 94, 0.35);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  max-width: 960px;
  margin: 0 auto;
}

.order-super-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.order-big-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.highlight-serif-gold {
  color: var(--gold-light);
  font-style: italic;
}

.order-desc-copy {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.order-heroic-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-zomato-giant {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: var(--zomato-red);
  color: #FFFFFF;
  padding: 18px 38px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 36px rgba(226, 55, 68, 0.5);
  transition: all 0.3s var(--ease-snappy);
}

.btn-zomato-giant:hover {
  background-color: var(--zomato-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(226, 55, 68, 0.65);
}

.giant-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.giant-text-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.giant-small {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.giant-big {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
}

.giant-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-zomato-giant:hover .giant-arrow {
  transform: translateX(6px);
}

.order-guarantees {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.guarantee-chip {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-chip i {
  color: var(--gold-accent);
}

/* ---------------- 13. LOCATION & VISIT SECTION ---------------- */
.location-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--forest-dark);
  color: #FFFFFF;
}

.location-bg-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 19, 0.94) 0%, rgba(18, 36, 31, 0.96) 100%);
}

.location-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.location-street {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 30px;
}

.location-details-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(184, 155, 94, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.phone-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
}

.phone-link:hover {
  color: var(--gold-light);
}

.detail-row small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

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

/* Map Card */
.map-frame-box {
  background-color: var(--moss-card);
  border: 1px solid rgba(184, 155, 94, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.map-top-status {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-indicator {
  font-size: 0.8rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.green-ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: mapPing 2s infinite;
}

@keyframes mapPing {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.status-city {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.map-embed-wrapper iframe {
  display: block;
}

/* ---------------- 14. EDITORIAL FOOTER & LOGO ---------------- */
.editorial-footer {
  background-color: var(--forest-deep);
  color: #FFFFFF;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid rgba(184, 155, 94, 0.4);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.footer-motto {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-strip {
  display: flex;
  gap: 12px;
}

.footer-social-strip a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social-strip a:hover {
  background-color: var(--gold-accent);
  color: var(--forest-dark);
  transform: translateY(-2px);
}

.col-heading {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links-col a:hover {
  color: #FFFFFF;
  padding-left: 2px;
}

.footer-contact-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.footer-phone {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-zomato-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FF6B6B;
  margin-top: 8px;
}

.footer-copyright-bar {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- 15. PROPERLY PINNED FLOATING WHATSAPP BUTTON ---------------- */
.floating-whatsapp-btn {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
}

.whatsapp-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.25s var(--ease-snappy), background-color 0.25s ease;
  flex-shrink: 0;
}

.floating-whatsapp-btn:hover .whatsapp-icon-circle {
  background-color: var(--whatsapp-dark);
  transform: scale(1.08);
}

.whatsapp-live-ping {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--whatsapp-green);
}

.whatsapp-tooltip {
  background-color: var(--forest-dark);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 155, 94, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------- 16. FULL MENU MODAL ---------------- */
.menu-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 22, 19, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal-window {
  background-color: var(--cream-bg);
  color: var(--text-main);
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  border-radius: var(--radius-md);
  padding: 36px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease-snappy);
}

.menu-modal-backdrop.active .menu-modal-window {
  transform: scale(1);
}

.menu-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(31, 58, 50, 0.12);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.modal-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.modal-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--forest-primary);
  margin-top: 2px;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-close-btn {
  font-size: 2rem;
  color: var(--forest-primary);
  line-height: 1;
}

.modal-menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.modal-tab-btn {
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background-color: var(--card-white);
  border: 1px solid rgba(31, 58, 50, 0.12);
  color: var(--forest-primary);
}

.modal-tab-btn.active {
  background-color: var(--forest-primary);
  color: #FFFFFF;
}

.modal-menu-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.group-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest-primary);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-accent);
}

.menu-row-item {
  margin-bottom: 14px;
}

.row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.dish-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-primary);
}

.dish-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.menu-modal-footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 58, 50, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-subtext {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest-primary);
}

/* ---------------- 17. MOBILE RESPONSIVENESS ---------------- */
@media (max-width: 1024px) {
  .magazine-layout-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .magazine-layout-row.row-reversed {
    grid-template-columns: 1fr;
  }

  .magazine-layout-row.row-reversed .magazine-content-wrap {
    order: 1;
  }

  .magazine-layout-row.row-reversed .magazine-media-wrap {
    order: 2;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header-desktop-nav {
    display: none;
  }

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

  .hero-section {
    min-height: 560px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-location-text {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .hero-action-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-outline-light, .btn-zomato {
    width: 100%;
  }

  .story-slide-card {
    width: 82vw;
    padding: 24px 20px;
  }

  .stacked-deck-container {
    height: 420px;
  }

  .deck-card {
    height: 350px;
    padding: 28px 22px;
  }

  .deck-big-num {
    font-size: 2.4rem;
  }

  .deck-title {
    font-size: 1.4rem;
  }

  .deck-desc {
    font-size: 0.9rem;
  }

  .menu-complete-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .inpage-menu-tabs {
    gap: 6px;
  }

  .inpage-tab-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .menu-action-banner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .banner-btns {
    flex-direction: column;
    width: 100%;
  }

  .banner-btns .btn {
    width: 100%;
  }

  .order-card-heroic {
    padding: 40px 20px;
  }

  .order-big-heading {
    font-size: 2rem;
  }

  .btn-zomato-giant {
    width: 100%;
    padding: 16px 20px;
    gap: 12px;
    justify-content: center;
  }

  .location-buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-gold, .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-modal-window {
    padding: 24px 18px;
  }

  .floating-whatsapp-btn {
    bottom: 20px !important;
    right: 20px !important;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
