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

:root {
  --brown-dark: #2B1B14;
  --brown-mid: #4A2F22;
  --cream: #F3EAE0;
  --cream-soft: #EDE1D2;
  --clay: #C88A5A;
  --clay-light: #E4B78C;
  --text-muted: #6B4B3A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--brown-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

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

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  padding: 20px 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(43,27,20,0.97);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  transition: height 0.4s ease;
}

.site-header.scrolled .logo { height: 42px; }

nav#mainNav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.nav-order-btn {
  background: var(--clay);
  color: var(--brown-dark);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-order-btn:hover { background: var(--clay-light); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,27,20,0.6) 0%, rgba(43,27,20,0.8) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 0 20px;
  max-width: 750px;
  animation: fadeUp 1.2s ease both;
}

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

.hero-eyebrow { letter-spacing: 0.15em; font-size: 13px; color: var(--clay-light); margin-bottom: 14px; text-transform: uppercase; }
.hero-content h1 { font-size: 3.4rem; line-height: 1.2; margin-bottom: 18px; }
.hero-sub { font-size: 1.05rem; color: #EADFCF; margin-bottom: 32px; }

.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.btn-primary { background-color: var(--clay); color: var(--brown-dark); }
.btn-primary:hover { background-color: var(--clay-light); transform: translateY(-2px); }

.btn-outline { border: 1px solid var(--cream); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--brown-dark); transform: translateY(-2px); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid var(--cream);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--clay-light);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ WHY US ============ */
.why-us { padding: 80px 40px; background: var(--brown-dark); color: var(--cream); }

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.why-item i { font-size: 2rem; color: var(--clay); margin-bottom: 16px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-item p { font-size: 0.92rem; color: #C9B29E; }

/* ============ SECTION SHARED ============ */
.section-tag { display: inline-block; font-size: 13px; letter-spacing: 0.1em; color: var(--clay); margin-bottom: 10px; text-transform: uppercase; }
.section-head { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-sub { color: var(--text-muted); max-width: 500px; margin: 10px auto 0; }

/* ============ ABOUT ============ */
.about { padding: 100px 40px; }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img { border-radius: 8px; box-shadow: 0 20px 50px rgba(43,27,20,0.15); }

.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--clay); }
.about-stats span { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ============ MENU / DISH CARDS ============ */
.menu { padding: 100px 40px; background: var(--cream-soft); }

.dish-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
}

.dish-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(43,27,20,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dish-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(43,27,20,0.18); }

.dish-img { overflow: hidden; height: 220px; }
.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-info { padding: 20px 22px 24px; }

.dish-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dish-top h3 { font-size: 1.15rem; }
.price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--clay); font-size: 1.1rem; }

.dish-info p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-btn:hover { background: var(--clay); color: var(--brown-dark); transform: translateY(-2px); }

/* ============ GALLERY ============ */
.gallery { padding: 100px 40px; }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%; height: 230px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.95);
}

.gallery-grid img:hover { transform: scale(1.03); filter: saturate(1.1); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 40px; background: var(--brown-dark); color: var(--cream); }

.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px;
}

.stars { color: var(--clay); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; color: #E4D9C9; margin-bottom: 18px; }
.testimonial-name { font-size: 0.85rem; color: var(--clay-light); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 90px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--clay), var(--clay-light));
  color: var(--brown-dark);
}

.final-cta h2 { font-size: 2.2rem; margin-bottom: 14px; }
.final-cta p { max-width: 480px; margin: 0 auto 28px; }
.final-cta .btn-primary { background: var(--brown-dark); color: var(--cream); }
.final-cta .btn-primary:hover { background: var(--brown-mid); }

/* ============ FOOTER ============ */
.site-footer { background: var(--brown-dark); color: var(--cream); padding: 70px 40px 0; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 55px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.footer-tagline { color: #C9B29E; font-size: 0.9rem; }

.footer-col h4 { font-family: 'Playfair Display', serif; margin-bottom: 16px; color: var(--clay-light); }
.footer-col p { font-size: 0.9rem; color: #C9B29E; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }

.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--clay-light);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-socials a:hover { background: var(--clay); color: var(--brown-dark); }

.footer-bottom { text-align: center; padding: 24px 0; font-size: 13px; color: #A8917F; }

/* ============ FLOATING BUTTONS ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 150;
  animation: pulse 2.4s ease infinite;
}

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

.scroll-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  background: var(--brown-dark);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: var(--clay); color: var(--brown-dark); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,12,8,0.93);
  display: none;
  align-items: center; justify-content: center;
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 88vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.lightbox-close {
  position: absolute; top: 24px; right: 36px;
  background: none; border: none;
  color: var(--cream); font-size: 2.4rem;
  cursor: pointer; line-height: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav#mainNav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px;
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right 0.4s ease;
    z-index: 200;
  }
  nav#mainNav.open { right: 0; }
  .menu-toggle { display: flex; }
  .hero-content h1 { font-size: 2.4rem; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col p, .footer-socials { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .scroll-cue span { animation: none; }
  .floating-whatsapp { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}