/* ═══════════════════════════════════════════════════════════
   THE HUNTER'S CHULHA — styles.css
   Dark Rustic-Luxe · Fire & Smoke · 3D Immersive
═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --coal:      #0D0A07;
  --ash-dark:  #1A1410;
  --ash-mid:   #2A2018;
  --ash-light: #3D2E20;
  --ember:     #FF6B2B;
  --ember-hot: #FF8C42;
  --ember-dim: #C44A10;
  --gold:      #D4A054;
  --gold-light:#F0C878;
  --cream:     #F2E6D9;
  --cream-dim: #C8B49A;
  --smoke:     rgba(255,255,255,0.04);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-hindi:   'Tiro Devanagari Hindi', serif;
  --font-body:    'Outfit', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--coal);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--ember);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), background 0.3s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,107,43,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease-out-expo), top 0.12s var(--ease-out-expo), width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--gold); }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 56px; height: 56px; border-color: rgba(212,160,84,0.5); }

/* ── Smoke Overlay ── */
.smoke-overlay {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255,107,43,0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,160,84,0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--coal); }
::-webkit-scrollbar-thumb { background: var(--ash-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ember-dim); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(13,10,7,0.92);
  backdrop-filter: blur(20px);
  padding: 0.9rem 4rem;
  border-bottom: 1px solid rgba(255,107,43,0.1);
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display);
}
.nav-logo-en {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cream-dim);
}
.nav-logo-hi {
  font-size: 1.5rem; font-weight: 700; color: var(--ember);
  font-family: var(--font-hindi);
}
.nav-links {
  display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream-dim);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--ember);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coal);
  background: var(--ember);
  padding: 0.6rem 1.4rem; border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--ember-hot); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(13,10,7,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--cream-dim); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--ember); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, #3D1A08 0%, #1A0D05 40%, var(--coal) 100%);
}

/* Fire Canvas */
.fire-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; opacity: 0.85;
}

/* Parallax smoke layers */
.hero-parallax-bg { position: absolute; inset: 0; z-index: 2; }
.smoke-layer {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
  animation: smokeDrift 8s ease-in-out infinite;
}
.smoke-1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, #FF6B2B, transparent);
  bottom: -100px; left: 20%;
  animation-delay: 0s;
}
.smoke-2 {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, #D4A054, transparent);
  bottom: -50px; right: 25%;
  animation-delay: -3s;
}
.smoke-3 {
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, #FF8C42, transparent);
  bottom: 100px; left: 50%;
  animation-delay: -5s;
}
@keyframes smokeDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.12; }
  50% { transform: translateY(-40px) scale(1.1); opacity: 0.2; }
}

/* Hero Content */
.hero-content {
  position: relative; z-index: 5;
  text-align: center; padding: 0 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease-out-expo) forwards;
}
.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block; font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; color: var(--cream);
  opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease-out-expo) forwards;
  text-shadow: 0 0 80px rgba(255,107,43,0.3);
}
.hero-title-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--ember);
  font-style: italic;
  animation-delay: 0.7s;
  text-shadow: 0 0 60px rgba(255,107,43,0.5), 0 0 120px rgba(255,107,43,0.2);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim); line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s var(--ease-out-expo) forwards;
}
.hero-subtitle em { color: var(--gold); font-style: italic; font-family: var(--font-display); }
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.1s var(--ease-out-expo) forwards;
}

/* Embers */
.embers-container {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.ember-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--ember-hot);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,140,66,0.6);
  animation: emberFloat linear infinite;
}
@keyframes emberFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0); opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 5;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--ember));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim);
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--ember); color: var(--coal);
  box-shadow: 0 0 30px rgba(255,107,43,0.3);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ember-hot), var(--ember));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,107,43,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(242,230,217,0.3);
}
.btn-ghost:hover {
  border-color: var(--ember); color: var(--ember);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--ember);
  padding: 0.75rem 0; overflow: hidden;
  position: relative; z-index: 10;
}
.marquee-track {
  display: flex; gap: 2rem; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coal);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ember);
  margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--cream);
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1rem; color: var(--cream-dim);
  margin-top: 0.75rem; max-width: 500px; margin-inline: auto;
}

/* Reveal animations */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ══════════════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════════════ */
.menu-section {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--coal) 0%, var(--ash-dark) 50%, var(--coal) 100%);
  position: relative;
}
.menu-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--ember-dim), transparent);
}

/* Tabs */
.menu-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3.5rem; flex-wrap: wrap;
}
.tab-btn {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream-dim);
  padding: 0.6rem 1.5rem; border-radius: 2px;
  border: 1px solid rgba(242,230,217,0.15);
  transition: all 0.3s;
}
.tab-btn:hover { color: var(--cream); border-color: rgba(242,230,217,0.4); }
.tab-btn.active {
  background: var(--ember); color: var(--coal);
  border-color: var(--ember);
  box-shadow: 0 0 20px rgba(255,107,43,0.3);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1300px; margin: 0 auto;
}

/* Menu Cards — 3D Tilt */
.menu-card {
  background: var(--ash-dark);
  border: 1px solid rgba(255,107,43,0.1);
  border-radius: 4px; overflow: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s;
  will-change: transform;
}
.menu-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,107,43,0.15);
}
.menu-card-inner { position: relative; }
.menu-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coal);
  background: var(--gold); padding: 0.25rem 0.6rem; border-radius: 2px;
}
.menu-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.menu-card-img img {
  transition: transform 0.6s var(--ease-out-expo);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,7,0.8) 0%, transparent 60%);
}
.menu-card-flame {
  position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 2;
  font-size: 1.2rem;
  animation: flameFlicker 1.5s ease-in-out infinite;
}
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.15) rotate(3deg); }
}
.menu-card-body { padding: 1.25rem; }
.menu-card-body h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--cream); margin-bottom: 0.2rem;
}
.menu-card-hindi {
  font-family: var(--font-hindi); font-size: 0.85rem;
  color: var(--ember); margin-bottom: 0.6rem;
}
.menu-card-body p {
  font-size: 0.85rem; color: var(--cream-dim); line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,107,43,0.1);
}
.price {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--gold);
}
.spice-level { font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════════════════════ */
.story-section {
  padding: 8rem 4rem;
  background: var(--ash-dark);
  position: relative; overflow: hidden;
}
.story-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,107,43,0.06), transparent);
  top: -200px; right: -200px; pointer-events: none;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

/* Image Stack */
.story-img-stack { position: relative; height: 520px; }
.story-img {
  position: absolute; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.story-img-back {
  width: 80%; height: 420px;
  top: 0; left: 0;
  border: 1px solid rgba(255,107,43,0.15);
}
.story-img-front {
  width: 60%; height: 300px;
  bottom: 0; right: 0;
  border: 2px solid var(--ember-dim);
  z-index: 2;
}
.story-badge-float {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--ember);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(255,107,43,0.5);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,107,43,0.5); }
  50% { box-shadow: 0 0 70px rgba(255,107,43,0.8); }
}
.story-badge-num {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 900; color: var(--coal); line-height: 1;
}
.story-badge-text {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--coal);
  text-align: center; line-height: 1.3;
}

/* Story Text */
.story-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.story-body {
  font-size: 1rem; color: var(--cream-dim); line-height: 1.8;
  margin-bottom: 1.25rem;
}
.story-stats {
  display: flex; gap: 2.5rem; margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,107,43,0.15);
  border-bottom: 1px solid rgba(255,107,43,0.15);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 900; color: var(--ember);
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-dim);
}

/* ══════════════════════════════════════════════════════════
   AMBIANCE SECTION
══════════════════════════════════════════════════════════ */
.ambiance-section {
  padding: 8rem 4rem;
  background: var(--coal);
  position: relative;
}
.ambiance-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--ember-dim), transparent);
}
.ambiance-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1300px; margin: 0 auto;
}
.ambiance-card {
  position: relative; overflow: hidden; border-radius: 4px;
  border: 1px solid rgba(255,107,43,0.1);
}
.ambiance-large { grid-row: span 2; }
.ambiance-card img {
  height: 100%; min-height: 250px;
  transition: transform 0.7s var(--ease-out-expo);
}
.ambiance-large img { min-height: 500px; }
.ambiance-card:hover img { transform: scale(1.06); }
.ambiance-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,7,0.9) 0%, rgba(13,10,7,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.7; transition: opacity 0.3s;
}
.ambiance-card:hover .ambiance-overlay { opacity: 1; }
.ambiance-overlay h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; color: var(--cream); margin-bottom: 0.3rem;
}
.ambiance-overlay p { font-size: 0.85rem; color: var(--cream-dim); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 8rem 0;
  background: var(--ash-dark);
  overflow: hidden;
  position: relative;
}
.testimonials-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--ember-dim), transparent);
}
.testimonials-track-wrapper { overflow: hidden; padding: 1rem 0; }
.testimonials-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: testimonialsScroll 30s linear infinite;
  padding: 0 4rem;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--ash-mid);
  border: 1px solid rgba(255,107,43,0.1);
  border-radius: 4px; padding: 2rem;
  width: 360px; flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.7; margin-bottom: 1.5rem;
  font-style: italic; font-family: var(--font-display);
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ember-dim); color: var(--coal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--cream); }
.testimonial-author span { font-size: 0.75rem; color: var(--cream-dim); }

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--coal) 0%, var(--ash-dark) 100%);
  position: relative;
}
.contact-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--ember-dim), transparent);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.contact-info .section-title { text-align: left; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-item strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 0.3rem;
}
.contact-item p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.6; }

/* Form */
.contact-form-wrap {
  background: var(--ash-mid);
  border: 1px solid rgba(255,107,43,0.15);
  border-radius: 4px; padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--cream); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ash-dark);
  border: 1px solid rgba(242,230,217,0.1);
  border-radius: 2px; padding: 0.75rem 1rem;
  color: var(--cream); font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,180,154,0.4); }
.form-group select option { background: var(--ash-dark); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--coal);
  border-top: 1px solid rgba(255,107,43,0.1);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,230,217,0.06);
}
.footer-brand p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; margin-top: 1rem; }
.footer-logo {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display);
}
.footer-logo span:first-child {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cream-dim);
}
.footer-logo-hi {
  font-size: 2rem; font-weight: 700; color: var(--ember);
  font-family: var(--font-hindi);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.88rem; color: var(--cream-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(200,180,154,0.4);
}

/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: var(--ember); color: var(--coal);
  padding: 1rem 1.5rem; border-radius: 4px;
  font-size: 0.9rem; font-weight: 600;
  transform: translateY(100px); opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.4s;
  box-shadow: 0 10px 40px rgba(255,107,43,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-stack { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ambiance-grid { grid-template-columns: 1fr 1fr; }
  .ambiance-large { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .menu-section, .story-section, .ambiance-section,
  .testimonials-section, .contact-section { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .ambiance-grid { grid-template-columns: 1fr; }
  .ambiance-large { grid-column: span 1; }
  .story-img-stack { height: 280px; }
  .story-img-back { width: 85%; height: 260px; }
  .story-img-front { width: 65%; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .story-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .nav { padding: 1rem 1.25rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
}