/* ==========================================================================
   Ember & Smoke - Core Variables
   ========================================================================== */
:root {
  --bg: #0C0A08;
  --bg-raised: #141210;
  --bg-section: #100E0C;
  
  --ember: #E8621A;
  --ember-bright: #F5843D;
  --ember-dim: rgba(232,98,26,0.12);
  --ember-line: rgba(232,98,26,0.22);
  --ember-glow: rgba(232,98,26,0.06);
  
  --gold: #C9A84C;
  --cream: #F5F0E8;
  --cream-muted: rgba(245,240,232,0.55);
  --cream-faint: rgba(245,240,232,0.18);
  
  --bg-light: #F7F3EC;
  
  --shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .playfair {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 strong, h2 strong, h3 strong, .playfair-700 {
  font-weight: 700;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

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

/* Typography Utilities */
.section-label {
  font-family: 'DM Mono', monospace;
  color: var(--ember);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-label.dark-label {
  color: var(--ember);
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.section-headline.dark-headline {
  color: #1A1A1A;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
  background: transparent;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(12,10,8,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ember-line);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.logo-ember {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
}

.logo-smoke {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ember);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

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

.btn-nav {
  border: 1px solid var(--ember);
  color: var(--ember);
  background: var(--ember-dim);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  border-radius: 4px;
  padding: 10px 22px;
}

.btn-nav:hover {
  background: var(--ember);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(232,98,26,0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--ember);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 80%;
  max-width: 300px;
}

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.full-width {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, transparent 30%, rgba(12,10,8,0.6) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(var(--cream-faint) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

#emberCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 25vw;
  color: rgba(245,240,232,0.025);
  letter-spacing: -0.02em;
  z-index: 0;
  line-height: 0.8;
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(12,10,8,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-location {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--ember-line);
  border-radius: 999px;
  padding: 6px 18px;
  color: var(--ember);
  background: var(--ember-dim);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-line-2 {
  color: var(--ember);
}

.glowing-dot {
  text-shadow: 0 0 30px rgba(232,98,26,0.9);
}

.hero-divider-container {
  height: 1px;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ember), transparent);
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--cream-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--ember);
  color: #0C0A08;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 3px;
  border: 1px solid var(--ember);
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232,98,26,0.4), 0 0 80px rgba(232,98,26,0.15);
}

.btn-secondary {
  border: 1px solid var(--ember-line);
  color: var(--cream);
  background: transparent;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 3px;
}

.btn-secondary:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: var(--ember-dim);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--ember);
  transform-origin: top;
  animation: pulse-scroll 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.scroll-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--cream-faint);
}

/* Animations */
.animate-entrance {
  opacity: 0;
}

.animate-entrance.visible {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay);
}

.hero-line-1.visible {
  animation: stampIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay);
}

.hero-line-2.visible {
  animation: stampIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay);
}

.hero-divider.visible {
  animation: drawLine 0.6s ease-out forwards;
  animation-delay: 1.0s;
}

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

@keyframes stampIn {
  from { opacity: 0; transform: scale(0.95); filter: blur(6px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 80px; }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Opening Hours Strip
   ========================================================================== */
.hours-strip {
  background: var(--ember);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hours-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hours-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: white;
}

/* ==========================================================================
   Story Section
   ========================================================================== */
.story-section {
  background: var(--bg-section);
}

.story-body {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.philosophy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  border: 1px solid var(--ember-line);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--cream-faint);
}

.story-card {
  background: var(--bg-raised);
  border: 1px solid var(--ember-line);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}

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

.stat-row {
  border-bottom: 1px solid var(--ember-line);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-row:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.quote-block {
  border-left: 3px solid var(--ember);
  padding-left: 1.25rem;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}

.quote-source {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--ember);
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
  background: var(--bg-light);
  color: #1A1A1A;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tab-btn {
  padding: 0 0 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #8A8A8A;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: #1A1A1A;
}

.tab-btn.active {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.menu-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.menu-tab-content.active {
  display: block;
  opacity: 1;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: rgba(232,98,26,0.04);
  padding-left: 8px;
  padding-right: 8px;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1A1A1A;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.veg-badge {
  border: 1px solid #4CAF50;
  color: #4CAF50;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
}

.menu-item-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
  max-width: 500px;
}

.menu-item-right {
  text-align: right;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ember);
}

.menu-item-currency {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: #888;
}

.featured-menu-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 4px solid var(--ember);
  margin-bottom: 1.5rem;
}

.featured-label {
  font-family: 'DM Mono', monospace;
  color: var(--ember);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.featured-name {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.featured-desc {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.featured-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  background: var(--bg);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.food-item {
  background: linear-gradient(135deg, #1a0f00 0%, #2d1500 50%, #1a0a00 100%);
}

.atmos-item {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1200 50%, #0a0f0f 100%);
}

.gallery-icon {
  width: 60px;
  height: 60px;
  opacity: 0.4;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.gallery-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--ember);
  position: relative;
  z-index: 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,98,26,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 10;
}

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

.gallery-item:hover .gallery-icon {
  opacity: 0.8;
}

/* ==========================================================================
   Reservations Section
   ========================================================================== */
.res-section {
  background: var(--bg-section);
}

.res-columns {
  grid-template-columns: 55% 45%;
}

.res-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group.half {
  flex: 1;
}

.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ember-line);
  border-radius: 6px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.08);
}

.res-form input::placeholder,
.res-form textarea::placeholder {
  color: var(--cream-faint);
}

/* Select wrapper for custom chevron */
.custom-select-wrapper {
  position: relative;
}

.select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

/* Date input specific icon reset for webkit */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(345deg);
  opacity: 0.5;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  background: var(--ember);
  color: #0C0A08;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 4px;
  margin-top: 1rem;
}

.btn-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(232,98,26,0.35);
}

.form-success {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ember);
  padding: 1rem;
  border: 1px dashed var(--ember-line);
  border-radius: 4px;
  text-align: center;
}

.whatsapp-alt {
  margin-top: 2rem;
}

.whatsapp-alt a {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--ember);
}

.whatsapp-alt a:hover {
  text-decoration: underline;
}

/* Chat Assistant */
.chat-card {
  background: var(--bg-raised);
  border: 1px solid var(--ember-line);
  border-radius: 16px;
  height: 520px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}

.chat-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--ember-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232,98,26,0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232,98,26,0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(232,98,26,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232,98,26,0); }
}

.chat-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.2;
}

.chat-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--cream-faint);
}

.online-badge {
  background: rgba(34,197,94,0.1);
  color: #22C55E;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  padding: 3px 10px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--ember-line);
  border-radius: 4px;
}

.msg-wrapper {
  display: flex;
  width: 100%;
}

.msg-bot-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
}

.msg-user-wrapper {
  justify-content: flex-end;
}

.msg-avatar {
  width: 24px;
  height: 24px;
  background: var(--ember-dim);
  border: 1px solid var(--ember-line);
  color: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.msg-avatar.hidden {
  visibility: hidden;
}

.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: slideIn 0.3s ease-out forwards;
}

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

.msg-bot {
  background: var(--bg-raised);
  border: 1px solid var(--ember-line);
  border-radius: 12px 12px 12px 2px;
  color: var(--cream);
}

.msg-user {
  background: var(--ember);
  color: #0C0A08;
  border-radius: 12px 12px 2px 12px;
  font-weight: 400;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-raised);
  border: 1px solid var(--ember-line);
  border-radius: 12px 12px 12px 2px;
  width: fit-content;
  margin-left: 32px; /* aligns with messages next to avatar */
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--ember);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.chat-input-area {
  border-top: 1px solid var(--ember-line);
  padding: 1rem;
  display: flex;
  gap: 8px;
  align-items: center;
}

#chatInput {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  resize: none;
  outline: none;
  padding: 8px 0;
  max-height: 100px;
}

#chatInput::placeholder {
  color: var(--cream-faint);
}

.chat-send-btn {
  background: var(--ember);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  filter: brightness(1.15);
}

.chat-send-btn svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
  background: var(--bg);
}

.location-columns {
  grid-template-columns: 40% 60%;
}

.info-card {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.info-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-content p {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.ember-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--ember);
  text-decoration: none;
}

.ember-link:hover {
  text-decoration: underline;
}

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

.hours-table td {
  padding: 4px 0;
}

.hours-table td:first-child {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--ember);
  width: 100px;
}

.hours-table td:last-child {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-links a {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

.contact-links a:hover {
  color: var(--ember);
}

.map-placeholder {
  background: var(--bg-raised);
  border: 1px solid var(--ember-line);
  border-radius: 12px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-pin {
  width: 60px;
  height: 60px;
}

.map-placeholder h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #080806;
  border-top: 1px solid var(--ember-line);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--cream-faint);
  line-height: 1.6;
}

.footer-heading {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

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

.footer-phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

.footer-email {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
}

.footer-hours {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cream-faint);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--cream-faint);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  animation: wa-pulse 4s infinite;
  transition: transform 0.3s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: #0C0A08;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

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

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  .two-columns {
    gap: 3rem;
  }
  .res-columns {
    grid-template-columns: 1fr;
  }
  .location-columns {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 4rem 1.25rem;
  }
  
  .nav-links, .btn-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  
  .two-columns {
    grid-template-columns: 1fr;
  }
  
  .story-section .two-columns {
    display: flex;
    flex-direction: column;
  }
  
  .story-text {
    order: 1;
  }
  
  .story-visual {
    order: 2;
  }
  
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .res-columns {
    display: flex;
    flex-direction: column;
  }
  
  .res-left {
    order: 1;
  }
  
  .res-right {
    order: 2;
  }
  
  .chat-card {
    height: 420px;
    width: 100%;
  }
  
  .location-columns {
    display: flex;
    flex-direction: column;
  }
  
  .location-left {
    order: 1;
  }
  
  .location-right {
    order: 2;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
  }
}
