/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --saffron: #E8821A;
  --saffron-light: #F5A233;
  --crimson: #8B1A1A;
  --crimson-deep: #5C0E0E;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --charcoal: #0E0A07;
  --charcoal-mid: #1A1209;
  --charcoal-soft: #241A0F;
  --warm-beige: #F5EDD8;
  --warm-beige-dim: #D4C5A0;
  --text-body: #D4C5A0;
  --text-muted: #8A7A60;
  --white: #FFFFFF;
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--charcoal);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--saffron); color: var(--charcoal); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   UTILITY CLASSES
============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--warm-beige);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title .accent { color: var(--gold); }

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 40px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 60%, transparent);
  opacity: 0.4;
}
.divider-ornament {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--charcoal);
  box-shadow: 0 4px 18px rgba(232,130,26,0.35), 0 2px 6px rgba(0,0,0,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,130,26,0.5), 0 4px 10px rgba(0,0,0,0.4); }

.btn-outline {
  background: transparent;
  color: var(--warm-beige);
  border: 1px solid rgba(201,168,76,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08); }

.btn-ghost {
  background: transparent;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  padding: 10px 24px;
}
.btn-ghost:hover { background: var(--saffron); color: var(--charcoal); }

/* ============================================
   LANGUAGE SWITCHER
============================================ */
[data-lang="en"] [lang="es"] { display: none !important; }
[data-lang="en"] [lang="de"] { display: none !important; }
[data-lang="es"] [lang="en"] { display: none !important; }
[data-lang="es"] [lang="de"] { display: none !important; }
[data-lang="de"] [lang="en"] { display: none !important; }
[data-lang="de"] [lang="es"] { display: none !important; }

/* ============================================
   DECORATIVE PATTERN
============================================ */
.mandala-bg {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}

/* ============================================
   NAVIGATION
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(14,10,7,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--saffron);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--warm-beige); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
}
.lang-btn {
  padding: 2px;
  background: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  opacity: 0.4;
  display: flex;
  align-items: center;
  line-height: 1;
}
.lang-btn .fi {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
}
.lang-btn.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
}
.lang-btn:hover:not(.active) { opacity: 0.75; }

.mobile-lang-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0 4px;
}
.mobile-lang-toggle .lang-btn .fi {
  width: 30px;
  height: 22px;
}

.nav-cta { display: inline-flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--warm-beige);
  transition: var(--transition);
  display: block;
}

/* ============================================
   MOBILE MENU
============================================ */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100%);
  height: 100vh;
  background: var(--charcoal-mid);
  border-left: 1px solid rgba(201,168,76,0.15);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--warm-beige);
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--saffron); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(160deg, rgba(14,10,7,0.85) 0%, rgba(92,14,14,0.5) 50%, rgba(14,10,7,0.9) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Mandala decorations */
.hero-mandala-1 {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}
.hero-mandala-2 {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 450px; height: 450px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
}
.hero-mandala-3 {
  position: absolute;
  right: 30px; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  border: 1px solid rgba(232,130,26,0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s forwards;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s forwards;
}
.hero-title span { color: var(--saffron); }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--warm-beige-dim);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.7s forwards;
  max-width: 520px;
}

.hero-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s forwards;
}
.hero-hours-pill .dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.95s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT SECTION
============================================ */
#about {
  padding: 72px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

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

.about-text .section-label { margin-bottom: 16px; }

.about-body {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 340px;
}
.about-img {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,130,26,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.about-img:hover::after { opacity: 1; }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img:first-child { grid-row: 1 / 3; }

/* ============================================
   SIGNATURE DISHES
============================================ */
#dishes {
  padding: 120px 0;
  background: var(--charcoal-mid);
  position: relative;
}

.dishes-header { text-align: center; margin-bottom: 16px; }
.dishes-divider { justify-content: center; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.dish-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,130,26,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,130,26,0.1);
}

.dish-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,7,0.7) 0%, transparent 60%);
}

.dish-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--crimson);
  color: var(--warm-beige);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
}

.dish-body {
  padding: 20px;
}
.dish-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm-beige);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.dish-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   MENU SECTION
============================================ */
#menu {
  padding: 72px 0;
  background: var(--charcoal);
  position: relative;
}
.menu-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.menu-bg > div {
  flex: 1;
  background-size: cover;
  background-position: center;
}
.menu-bg-1 {
  background-image:
    linear-gradient(to bottom,
      rgba(14,10,7,1)    0%,
      rgba(14,10,7,0.90) 18%,
      rgba(14,10,7,0.90) 72%,
      rgba(14,10,7,1)   100%
    ),
    url('../img/fondo1.jpg');
}
.menu-bg-2 {
  background-image:
    linear-gradient(to bottom,
      rgba(14,10,7,1)    0%,
      rgba(14,10,7,0.90) 18%,
      rgba(14,10,7,0.90) 72%,
      rgba(14,10,7,1)   100%
    ),
    url('../img/fondo2.jpg');
}
.menu-bg-3 {
  background-image:
    linear-gradient(to bottom,
      rgba(14,10,7,1)    0%,
      rgba(14,10,7,0.90) 18%,
      rgba(14,10,7,0.90) 82%,
      rgba(14,10,7,1)   100%
    ),
    url('../img/fondo3.jpg');
}
#menu > .container { position: relative; z-index: 1; }
#menu::before, #menu::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
#menu::before {
  top: 0;
  background: linear-gradient(to bottom, var(--charcoal), transparent);
}
#menu::after {
  bottom: 0;
  background: linear-gradient(to top, var(--charcoal), transparent);
}

.menu-header { text-align: center; margin-bottom: 16px; }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.menu-click-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.menu-click-hint .fa-hand-pointer {
  color: var(--gold);
  font-size: 0.85rem;
  animation: hint-bounce 1.8s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
.menu-tab {
  padding: 9px 22px;
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--saffron);
  color: var(--charcoal);
  border-color: var(--saffron);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.2s;
  gap: 20px;
}
.menu-item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.08); }
.menu-item:hover { background: rgba(201,168,76,0.04); }
.menu-item[role="button"] { cursor: pointer; }
.menu-item[role="button"] .menu-item-name::after {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 7px;
  vertical-align: middle;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}
.menu-item[role="button"]:hover .menu-item-name::after {
  opacity: 1;
  color: var(--gold);
}

.menu-item-info {}
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--warm-beige);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.menu-item-badge {
  font-size: 0.6rem;
  background: rgba(26,92,14,0.3);
  color: #7EC87E;
  border: 1px solid rgba(126,200,126,0.25);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-weight: 600;
  flex-shrink: 0;
}

.menu-category-section { margin-bottom: 40px; }
.menu-category-header {
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 0;
}
.menu-category-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 4px;
}
.menu-category-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

.menu-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
}

/* ============================================
   REVIEWS
============================================ */
#reviews {
  padding: 72px 0;
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
}

.reviews-header { text-align: center; margin-bottom: 16px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--saffron);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  width: 14px; height: 14px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal-mid);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--warm-beige);
  font-weight: 600;
}
.review-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.review-source {
  position: absolute;
  top: 24px; right: 24px;
}
.google-badge {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   GALLERY
============================================ */
#gallery {
  padding: 120px 0;
  background: var(--charcoal);
}
.gallery-header { text-align: center; margin-bottom: 16px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,10,7,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-icon {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

/* ============================================
   LOCATION
============================================ */
#location {
  padding: 72px 0;
  background: var(--charcoal-mid);
}

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

.location-info {}
.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.location-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--gold);
}
.location-detail-text {}
.location-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 4px;
}
.location-detail-value {
  font-size: 0.9rem;
  color: var(--warm-beige);
  line-height: 1.5;
}
.location-detail-value a { transition: color 0.2s; }
.location-detail-value a:hover { color: var(--saffron); }

.location-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  height: 380px;
  background: var(--charcoal-soft);
  position: relative;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.9);
}

/* ============================================
   HOURS
============================================ */
#hours {
  padding: 72px 0 56px;
  background: var(--charcoal-soft);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.hours-header {
  text-align: center;
  margin-bottom: 48px;
}
.hours-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}
.hours-block { text-align: center; }
.hours-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.hours-time {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}
.hours-days {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.hours-divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,0.2);
}
.hours-closed {
  text-align: center;
}
.hours-closed-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hours-closed-day {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--crimson);
  font-weight: 600;
}

/* ============================================
   RESERVATION CTA
============================================ */
#reserve {
  padding: 72px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.reserve-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M40 0 L45 15 L60 15 L49 24 L53 40 L40 31 L27 40 L31 24 L20 15 L35 15 Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.reserve-inner {
  display: flex;
  justify-content: center;
}

.reserve-call {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 20px 28px;
  background: rgba(232,130,26,0.08);
  border: 1px solid rgba(232,130,26,0.2);
  border-radius: 6px;
}
.reserve-call-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.reserve-call-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.reserve-call-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--saffron);
  font-weight: 600;
}
.reserve-call-number a { color: inherit; }
.reserve-call-number a:hover { color: var(--gold); }
.reserve-call--link { text-decoration: none; display: flex; transition: border-color 0.2s, background 0.2s; }
.reserve-call--link:hover { border-color: rgba(232,130,26,0.5); background: rgba(232,130,26,0.05); }
.reserve-or {
  text-align: center;
  margin: 18px 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.reserve-or::before, .reserve-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(201,168,76,0.15);
}
.reserve-or::before { left: 0; }
.reserve-or::after { right: 0; }


/* ============================================
   FOOTER
============================================ */
#footer {
  background: var(--charcoal-mid);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--saffron);
  color: var(--charcoal);
  border-color: var(--saffron);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-beige);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron); }

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours-list li span:last-child { color: var(--warm-beige); }
.footer-hours-list .closed { color: var(--crimson); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-copy span { color: var(--saffron); }
.footer-slogan { font-style: italic; letter-spacing: 0.04em; }
.footer-instagram {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-instagram:hover { color: var(--gold); }

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-call {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  z-index: 900;
  box-shadow: 0 8px 24px rgba(232,130,26,0.4);
  transition: var(--transition);
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(232,130,26,0.5); }
.float-call-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  animation: ringPulse 2s infinite;
  opacity: 0;
}
@keyframes ringPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .dishes-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #navbar {
    background: rgba(14,10,7,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .nav-links { display: none; }
  .nav-cta { padding: 7px 12px; font-size: 0.6rem; letter-spacing: 0.1em; }
  .hamburger { display: flex; }
  .float-call { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { order: -1; height: 260px; }

  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-list { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 220px;
  }
  .gallery-item { height: 160px; }

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

@media (max-width: 600px) {
  .menu-tikka-note { justify-content: center; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .dishes-grid { grid-template-columns: 1fr; }
.hours-inner { flex-direction: column; align-items: center; gap: 28px; }
  .hours-divider { width: 80px; height: 1px; align-self: center; }
  .about-stats { flex-direction: row; gap: 0; justify-content: space-around; text-align: center; }
}

/* ============================================
   DISH MODAL
============================================ */
.menu-item {
  cursor: pointer;
  transition: background 0.18s ease;
  border-radius: 6px;
}
.menu-item:hover {
  background: rgba(232, 130, 26, 0.07);
}
.menu-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.dish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.dish-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.dish-modal-panel {
  background: var(--charcoal-mid);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 14px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(14px);
  transition: transform 0.28s cubic-bezier(0.34, 1.25, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.25) transparent;
}
.dish-modal-overlay.open .dish-modal-panel {
  transform: scale(1) translateY(0);
}

.dish-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--warm-beige);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.8rem;
  transition: background 0.18s;
}
.dish-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.dish-modal-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.dish-modal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--charcoal);
}
.dish-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-modal-body {
  padding: 22px 24px 28px;
}

.dish-modal-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--warm-beige);
  margin: 0 0 12px;
  line-height: 1.35;
  padding-right: 20px;
}

.dish-modal-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #e8dcc0;
  margin: 0 0 18px;
}

.dish-modal-dietary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dish-modal-dietary:empty { display: none; }

.dish-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.dish-modal-badge--vegetarian {
  background: rgba(76, 175, 80, 0.12);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.28);
}
.dish-modal-badge--vegan {
  background: rgba(46, 125, 50, 0.12);
  color: #a5d6a7;
  border: 1px solid rgba(46, 125, 50, 0.28);
}

.dish-modal-allergens-section {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 18px;
}

.menu-tikka-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 10px 16px;
  border-radius: 6px;
  background: rgba(232, 130, 26, 0.1);
  border: 1px solid rgba(232, 130, 26, 0.3);
  color: var(--saffron);
  font-size: 0.85rem;
}

.dish-modal-allergens-heading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dish-modal-allergens-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dish-modal-allergen-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text-body);
}

.dish-modal-no-allergens {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 480px) {
  .dish-modal-panel {
    border-radius: 10px;
    max-height: 94vh;
  }
  .dish-modal-img-wrap {
    height: 175px;
    border-radius: 10px 10px 0 0;
  }
  .dish-modal-body {
    padding: 18px 18px 24px;
  }
  .dish-modal-name {
    font-size: 1.05rem;
  }
}
