/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e05528, #c43f1a);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(224, 85, 40, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 85, 40, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #c43f1a;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid #e05528;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-secondary:hover {
  background: #e05528;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Tags ─────────────────────────────────────────── */
.tag-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05528;
  background: #fce4d6;
  padding: 6px 14px;
  border-radius: 50px;
}
.tag-label-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fde8d8;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}
.tag-spicy {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c43f1a;
  background: #fce4d6;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.tag-mild {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9e761e;
  background: #f5e4a8;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── Nav ──────────────────────────────────────────── */
#nav {
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(237, 207, 114, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* ── Hero ─────────────────────────────────────────── */
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(158, 49, 23, 0.15), 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}
.hero-img-wrapper:hover .hero-img {
  transform: scale(1.015) rotate(-0.5deg);
}
.hero-img-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.badge-top { top: 20px; left: -16px; }
.badge-bottom { bottom: 30px; right: -16px; }
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── Floating stat cards ──────────────────────────── */
.float-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 216, 214, 0.6);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  animation: float 4s ease-in-out infinite;
  min-width: 130px;
}
.float-card:nth-child(2) { animation-delay: -1.3s; }
.float-card:nth-child(3) { animation-delay: -2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-icon { font-size: 1.4rem; margin-bottom: 4px; }
.float-card-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #a8a296; font-weight: 600; }
.float-card-value { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #5f2115; }

/* ── Menu cards ───────────────────────────────────── */
.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(237,207,114,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(224,85,40,0.12);
}
.menu-card-img { overflow: hidden; }
.menu-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 20px 24px 24px; }

/* ── About ────────────────────────────────────────── */
.about-img-grid { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(158,49,23,0.12);
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.about-float-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: float 5s ease-in-out infinite;
}
.about-float-emoji { font-size: 2rem; }
.about-stat .font-display { font-family: 'Playfair Display', serif; }

/* ── Gallery ──────────────────────────────────────── */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(95,33,21,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ── Visit section ────────────────────────────────── */
.visit-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Form ─────────────────────────────────────────── */
.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e6df;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #5f2115;
  background: #faf8f5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.input-field::placeholder { color: #a8a296; }
.input-field:focus {
  border-color: #e05528;
  box-shadow: 0 0 0 3px rgba(224,85,40,0.1);
  background: #fff;
}

/* ── Scroll reveal ────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile menu ──────────────────────────────────── */
.mobile-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(237,207,114,0.2);
  font-size: 1rem;
}
.mobile-link:last-of-type { border-bottom: none; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-img-wrapper { max-width: 100%; margin-top: 2rem; }
  .hero-img-badge { display: none; }
  .float-card { min-width: 110px; padding: 12px 14px; }
  .float-card-value { font-size: 0.95rem; }
  .about-img-secondary { width: 50%; right: -10px; bottom: -20px; }
  .about-float-card { top: -10px; left: -10px; padding: 12px 14px; }
  .about-float-emoji { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .float-card { min-width: 100%; }
  .hero-img { border-radius: 18px; }
}
