/* ===================================
   DESI CHULHA — MASTER STYLESHEET
   =================================== */

:root {
  --terracotta: #C4522A;
  --terracotta-light: #D96B3A;
  --terracotta-dark: #A03E1C;
  --charcoal: #1E1612;
  --charcoal-mid: #2D2219;
  --charcoal-soft: #3D3028;
  --cream: #F5EDD8;
  --cream-light: #FAF5E8;
  --cream-dark: #E8D9B5;
  --gold: #C9A227;
  --gold-light: #E2B84A;
  --burnt-orange: #E05E1A;
  --text-primary: #1E1612;
  --text-secondary: #5A4A3A;
  --text-muted: #8A7A6A;
  --white: #FFFFFF;
  --shadow-warm: 0 8px 32px rgba(196, 82, 42, 0.15);
  --shadow-deep: 0 20px 60px rgba(30, 22, 18, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream-light);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

em { font-style: italic; color: var(--terracotta); }

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TICKER BAR */
.ticker-bar {
  background: var(--charcoal);
  color: var(--cream);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.ticker-content {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ticker-content span {
  color: var(--cream-dark);
  padding-right: 20px;
  border-right: 1px solid var(--charcoal-soft);
}

.ticker-content span:last-child { border-right: none; }

@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: rgba(14, 10, 7, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}

.navbar.scrolled {
  background: rgba(8, 5, 3, 1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 48px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon { font-size: 1.8rem; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(245,237,216,0.8);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}

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

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

.nav-admin {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500 !important;
}

.nav-admin:hover { background: var(--terracotta-light) !important; }
.nav-admin::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Push content below fixed ticker(40px) + navbar(72px) */
  padding-top: 112px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0D0A07 0%,
    #1A1008 30%,
    #2A1A0C 60%,
    #1E1206 100%
  );
}

.fire-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 85%, rgba(200, 80, 20, 0.4) 0%, rgba(180, 60, 10, 0.2) 40%, transparent 75%);
  pointer-events: none;
}

/* Animated embers */
.ember {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-ember linear infinite;
  opacity: 0;
}

.em1 { left: 25%; bottom: 20%; animation-duration: 4s; animation-delay: 0s; width: 3px; height: 3px; }
.em2 { left: 40%; bottom: 25%; animation-duration: 5.5s; animation-delay: 1s; background: var(--terracotta); }
.em3 { left: 55%; bottom: 22%; animation-duration: 3.8s; animation-delay: 0.5s; }
.em4 { left: 62%; bottom: 30%; animation-duration: 6s; animation-delay: 2s; width: 2px; height: 2px; }
.em5 { left: 35%; bottom: 18%; animation-duration: 4.5s; animation-delay: 1.5s; background: #FF9500; }
.em6 { left: 70%; bottom: 28%; animation-duration: 3.5s; animation-delay: 0.8s; width: 3px; height: 3px; }
.em7 { left: 48%; bottom: 35%; animation-duration: 5s; animation-delay: 2.5s; background: #FF6B00; }
.em8 { left: 30%; bottom: 40%; animation-duration: 4.2s; animation-delay: 3s; width: 2px; height: 2px; }

@keyframes float-ember {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-200px) translateX(var(--drift, 30px)) scale(0.3); }
}

/* Chulha Art */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
}

.chulha-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.clay-pot {
  width: 120px; height: 110px;
  background: radial-gradient(ellipse at 35% 35%, #7A4F30 0%, #5A3418 40%, #3D2010 100%);
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  position: relative;
  box-shadow: inset -15px -15px 30px rgba(0,0,0,0.5), 0 5px 20px rgba(0,0,0,0.4);
  animation: pot-sway 3s ease-in-out infinite;
}

.clay-pot::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 16px;
  background: #5A3418;
  border-radius: 50%;
}

@keyframes pot-sway {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.steam {
  position: absolute;
  bottom: 100%;
  width: 3px;
  background: linear-gradient(to top, rgba(255,255,255,0.5), transparent);
  border-radius: 50%;
  animation: steam-rise 2s ease-in-out infinite;
}

.s1 { left: 35%; height: 30px; animation-delay: 0s; }
.s2 { left: 50%; height: 45px; animation-delay: 0.6s; }
.s3 { left: 65%; height: 28px; animation-delay: 1.2s; }

@keyframes steam-rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.8; }
  100% { transform: translateY(-60px) scaleX(3); opacity: 0; }
}

.fire-base {
  width: 160px; height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -10px;
  position: relative;
}

.flame {
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  animation: flicker ease-in-out infinite;
  transform-origin: bottom center;
}

.fl1 {
  width: 35px; height: 65px;
  background: linear-gradient(to top, #FF6B00, #FF9A00, #FFD700);
  opacity: 0.9;
  animation-duration: 0.8s;
  margin-left: -10px;
}

.fl2 {
  width: 50px; height: 90px;
  background: linear-gradient(to top, #FF4500, #FF7A00, #FFA500, #FFE066);
  opacity: 1;
  animation-duration: 1s;
  z-index: 1;
  margin-top: -20px;
}

.fl3 {
  width: 35px; height: 65px;
  background: linear-gradient(to top, #FF6B00, #FF9A00, #FFD700);
  opacity: 0.9;
  animation-duration: 0.9s;
  margin-left: -10px;
}

@keyframes flicker {
  0%, 100% { transform: scaleX(1) scaleY(1) rotate(-2deg); }
  25% { transform: scaleX(0.9) scaleY(1.05) rotate(2deg); }
  50% { transform: scaleX(1.05) scaleY(0.95) rotate(-1deg); }
  75% { transform: scaleX(0.95) scaleY(1.03) rotate(1.5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-left: 80px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.6s; color: var(--gold); }

.hero-title .italic { font-style: italic; }

.hero-desc {
  color: rgba(245,237,216,0.7);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.8s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(196, 82, 42, 0.4);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 82, 42, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border: 1.5px solid rgba(245,237,216,0.4);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(245,237,216,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: fadeInUp 0.8s ease 1.4s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,237,216,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ANNOUNCEMENTS */
.announcements {
  background: var(--charcoal);
  padding: 40px 0;
}

.announce-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.announce-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.announce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.announce-card {
  background: rgba(245,237,216,0.05);
  border: 1px solid rgba(245,237,216,0.1);
  border-left: 3px solid var(--terracotta);
  border-radius: 10px;
  padding: 18px 20px;
  transition: var(--transition);
}

.announce-card:hover {
  background: rgba(245,237,216,0.08);
  transform: translateY(-2px);
}

.announce-card .a-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.announce-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.announce-card p {
  font-size: 0.85rem;
  color: rgba(245,237,216,0.6);
  line-height: 1.5;
}

/* STORY SECTION */
.story {
  padding: 120px 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.story-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(196, 82, 42, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.story-img-frame {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
}

.story-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(196, 82, 42, 0.3), transparent 70%);
}

.story-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Pot illustration */
.pot-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pot-body {
  width: 100px; height: 90px;
  background: radial-gradient(ellipse at 35% 35%, #8B5E3C 0%, #5C3A1E 50%, #3D2010 100%);
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  box-shadow: inset -12px -12px 24px rgba(0,0,0,0.6), 0 6px 20px rgba(0,0,0,0.4);
  position: relative;
}

.pot-neck {
  width: 50px; height: 14px;
  background: #5C3A1E;
  border-radius: 4px 4px 0 0;
  margin-top: -6px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

.pot-mouth {
  width: 62px; height: 12px;
  background: #4A2E14;
  border-radius: 50%;
  margin-top: -2px;
}

.pot-steam {
  position: absolute;
  width: 3px;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
  border-radius: 50%;
  animation: steam-rise 2.5s ease-in-out infinite;
  bottom: 100%;
}

.ps1 { left: 35%; height: 35px; animation-delay: 0s; }
.ps2 { left: 60%; height: 50px; animation-delay: 0.8s; }

.story-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--charcoal);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.story-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.stat {
  flex: 1;
  text-align: center;
  background: var(--charcoal);
  border-radius: 10px;
  padding: 16px 12px;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-lbl {
  font-size: 0.75rem;
  color: rgba(245,237,216,0.6);
  letter-spacing: 0.05em;
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 28px;
  font-weight: 400;
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--terracotta) !important;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0 8px !important;
}

.story-attr {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.05em;
}

/* DISHES */
.dishes {
  padding: 100px 0;
  background: var(--charcoal);
}

.dishes .section-title { color: var(--cream); }
.dishes .section-eyebrow { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.dish-card {
  background: rgba(245,237,216,0.04);
  border: 1px solid rgba(245,237,216,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.dish-img {
  height: 200px;
  background: var(--charcoal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.dish-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(30,22,18,0.8), transparent);
}

.dish-info { padding: 20px; }

.dish-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.dish-desc {
  font-size: 0.85rem;
  color: rgba(245,237,216,0.5);
  line-height: 1.6;
  margin-bottom: 14px;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}

.veg-badge, .nonveg-badge {
  width: 18px; height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.veg-badge { border: 2px solid #22a722; }
.veg-badge::after { content: '●'; color: #22a722; font-size: 0.45rem; }
.nonveg-badge { border: 2px solid #cc2222; }
.nonveg-badge::after { content: '●'; color: #cc2222; font-size: 0.45rem; }

/* MENU SECTION */
.menu-section {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
}

.menu-texture {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c4522a' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11-9 20-20 20v-40c11 0 20 9 20 20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab.active, .tab:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

.diet-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.diet-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.pill-label {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}

.pill-label.veg { color: #22a722; }
.pill-label.nonveg { color: #cc2222; }

input:checked + .pill-label.veg { background: #22a722; color: white; border-color: #22a722; }
input:checked + .pill-label.nonveg { background: #cc2222; color: white; border-color: #cc2222; }

.diet-pill input { display: none; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.menu-item {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}

.menu-item-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-details { flex: 1; }

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item.hidden { display: none; }

/* GALLERY */
.gallery-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.gallery-section .section-title { color: var(--cream); }
.gallery-section .section-eyebrow { color: var(--gold); }

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gal-tab {
  background: none;
  border: 1.5px solid rgba(245,237,216,0.2);
  color: rgba(245,237,216,0.6);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.gal-tab.active, .gal-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.gal-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--charcoal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.gal-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; font-size: 3.5rem; }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,22,18,0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-item:hover .gal-overlay {
  background: rgba(30,22,18,0.7);
}

.gal-overlay-inner {
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  text-align: center;
  color: var(--cream);
}

.gal-item:hover .gal-overlay-inner {
  opacity: 1;
  transform: scale(1);
}

.gal-overlay-inner .gal-icon { font-size: 2rem; margin-bottom: 8px; }
.gal-overlay-inner p { font-size: 0.85rem; color: var(--cream-dark); }

.gal-item.video .gal-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(196,82,42,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  z-index: 2;
}

.gal-item.hidden { display: none; }

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.testimonials-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 82, 42, 0.06), transparent 70%);
  pointer-events: none;
}

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

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  display: none;
  animation: fadeIn 0.5s ease;
}

.review-card.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.review-stars { font-size: 1.3rem; margin-bottom: 24px; letter-spacing: 2px; }

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  border: 3px solid var(--cream-dark);
}

.review-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

.review-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* CONTACT */
.contact-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.contact-section .section-title { color: var(--cream); }
.contact-section .section-eyebrow { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: rgba(245,237,216,0.04);
  border: 1px solid rgba(245,237,216,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 20px; }

label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(245,237,216,0.6);
  font-weight: 500;
}

input, select, textarea {
  background: rgba(245,237,216,0.06);
  border: 1px solid rgba(245,237,216,0.12);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(245,237,216,0.3); }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(245,237,216,0.08);
}

select option { background: var(--charcoal); }
textarea { resize: vertical; min-height: 100px; }

.btn-primary.full-width { width: 100%; }

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-success p { color: rgba(245,237,216,0.6); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: rgba(245,237,216,0.04);
  border: 1px solid rgba(245,237,216,0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.info-card:hover { background: rgba(245,237,216,0.07); }

.info-icon { font-size: 1.4rem; flex-shrink: 0; }

.info-card h4 {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.88rem;
  color: rgba(245,237,216,0.6);
  line-height: 1.6;
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(245,237,216,0.08);
}

.map-embed iframe {
  width: 100%; height: 220px;
  border: none;
  display: block;
  filter: grayscale(0.4) brightness(0.85);
}

/* FOOTER */
.footer {
  background: #110D09;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,237,216,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,237,216,0.5);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

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

.social-links a {
  width: 38px; height: 38px;
  background: rgba(245,237,216,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

.footer-links h5 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,237,216,0.5);
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.footer-newsletter h5 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(245,237,216,0.5);
  margin-bottom: 16px;
}

.nl-form {
  display: flex;
  gap: 8px;
}

.nl-form input {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.nl-form button {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nl-form button:hover { background: var(--terracotta-light); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,237,216,0.3);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lb-close:hover { background: var(--terracotta); }

.lb-caption {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

/* ANIMATIONS (scroll-triggered) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MD section never uses fade-up - always visible */
.md-section .md-photo-wrap,
.md-section .md-content {
  opacity: 1 !important;
  transform: none !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .gal-item:nth-child(3n+1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(30,22,18,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(245,237,216,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-content { padding-left: 24px; padding-bottom: 120px; }
  .hero-scroll-hint { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-grid .gal-item:nth-child(3n+1) { grid-column: span 2; }
  .story-stat-row { gap: 12px; }
  .review-card { padding: 32px 24px; }
  .review-text { font-size: 1.15rem; }
  .section-title { font-size: 1.8rem; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .menu-tabs { gap: 6px; }
  .tab { padding: 8px 14px; font-size: 0.8rem; }
  .dishes-grid { grid-template-columns: 1fr; }
}

/* ===========================
   NAV LOGO — REAL IMAGE
   =========================== */
.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(201,162,39,0.5)) brightness(1.05);
  transition: filter 0.3s ease, transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 4px 20px rgba(201,162,39,0.75)) brightness(1.1);
  transform: scale(1.05);
}

/* ===========================
   MD MESSAGE SECTION
   =========================== */
.md-section {
  padding: 110px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.md-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(196,82,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(201,162,39,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.md-bg-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(245,237,216,0.012) 30px,
    rgba(245,237,216,0.012) 31px
  );
}

.md-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

/* Photo side */
.md-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.md-photo-frame {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 20px 20px 80px 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,162,39,0.25),
    0 0 0 6px rgba(201,162,39,0.06),
    0 30px 80px rgba(0,0,0,0.6);
}

.md-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(30,22,18,0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.md-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

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

.md-photo-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(196,82,42,0.4), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

/* Gold corner accent */
.md-photo-frame::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 48px; height: 48px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 6px 0 0;
  z-index: 2;
  opacity: 0.7;
}

.md-name-card {
  text-align: center;
  padding: 16px 28px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50px;
}

.md-name {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 3px;
}

.md-title-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(245,237,216,0.6);
  font-style: italic;
}

/* Content side */
.md-content { position: relative; }

.md-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(196,82,42,0.18);
  margin-bottom: 8px;
  font-weight: 700;
  user-select: none;
}

.md-message {
  color: rgba(245,237,216,0.7);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.md-message.md-sign-off {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
}

.md-signature {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.md-sig-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.md-sig-text {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(201,162,39,0.7);
  font-style: italic;
}

/* Responsive MD */
@media (max-width: 960px) {
  .md-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .md-photo-wrap { flex-direction: row; justify-content: center; gap: 32px; flex-wrap: wrap; }
  .md-photo-frame { width: 260px; height: 330px; }
}

@media (max-width: 600px) {
  .md-photo-wrap { flex-direction: column; align-items: center; }
  .md-photo-frame { width: 240px; height: 300px; }
  .md-quote-mark { font-size: 5rem; }
  .nav-logo-img { height: 42px; }
}
