:root {
  --dark: #15110d;
  --dark-soft: #211812;
  --cream: #fff8ef;
  --gold: #d7a24a;
  --gold-dark: #a87320;
  --text: #2a211a;
  --muted: #766a60;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(20, 12, 6, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; object-fit: cover; }
h1, h2, .navbar-brand { font-family: 'Playfair Display', serif; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.08; }
h3 { font-size: 1.15rem; font-weight: 800; }
p { color: var(--muted); line-height: 1.75; }

.section-padding { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-dark-soft { background: var(--dark-soft); }
.text-gold { color: var(--gold); }
.section-title { max-width: 720px; }
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.section-kicker.light { color: var(--gold); }

.nav-blur {
  background: rgba(21, 17, 13, .72);
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.nav-blur.scrolled { box-shadow: 0 14px 40px rgba(0,0,0,.22); background: rgba(21, 17, 13, .93); }
.brand-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), #f6d596);
  color: var(--dark);
}
.nav-link { color: rgba(255,255,255,.78); font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.mobile-links .nav-link { color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

.btn { border-radius: 999px; font-weight: 800; padding: .78rem 1.25rem; }
.btn-gold { background: var(--gold); color: var(--dark); border: 1px solid var(--gold); }
.btn-gold:hover { background: #efc36e; color: var(--dark); border-color: #efc36e; transform: translateY(-1px); }
.btn-outline-dark:hover { background: var(--dark); }

.hero-section {
  position: relative;
  color: var(--white);
  background: linear-gradient(100deg, rgba(18,12,7,.92), rgba(18,12,7,.66)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 70% 35%, rgba(215,162,74,.28), transparent 28%); }
.hero-text { max-width: 660px; color: rgba(255,255,255,.78); }
.hero-info { display: grid; gap: 12px; }
.hero-info div { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.84); }
.hero-info i { color: var(--gold); }
.glass-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card { position: relative; transform: rotate(2deg); }
.hero-card img { border-radius: 26px; height: 540px; width: 100%; }
.hero-card-badge {
  position: absolute; left: -10px; bottom: 44px;
  background: var(--gold); color: var(--dark); padding: 12px 18px;
  border-radius: 999px; font-weight: 800; box-shadow: var(--shadow);
}

.image-stack { position: relative; }
.main-img { width: 100%; height: 520px; border-radius: var(--radius); box-shadow: var(--shadow); }
.floating-note {
  position: absolute; right: 24px; bottom: -24px; width: min(300px, 85%);
  background: #fff; border-radius: 20px; padding: 20px; box-shadow: var(--shadow);
}
.floating-note strong, .floating-note span { display: block; }
.mini-stat { background: #fff; padding: 20px; border-radius: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.mini-stat strong { display: block; font-size: 1.7rem; color: var(--gold-dark); }
.mini-stat span { color: var(--muted); font-size: .88rem; }

.feature-card, .dish-card, .testimonial, .menu-row {
  border-radius: var(--radius);
  transition: .25s ease;
}
.feature-card {
  height: 100%; padding: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.feature-card:hover, .dish-card:hover, .testimonial:hover { transform: translateY(-6px); }
.feature-card i { font-size: 2rem; color: var(--gold); }
.feature-card p { color: rgba(255,255,255,.6); }

.dish-card { background: #fff; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,.07); height: 100%; }
.dish-card img { width: 100%; height: 230px; }
.dish-card div { padding: 22px; }
.dish-card strong { color: var(--gold-dark); font-size: 1.08rem; }

.btn-menu { background: #f3e8d8; color: var(--dark); }
.btn-menu.active, .btn-menu:hover { background: var(--dark); color: #fff; }
.menu-row { display: flex; justify-content: space-between; gap: 18px; padding: 24px; background: var(--cream); border: 1px solid #f0dfc8; height: 100%; }
.menu-row strong { color: var(--gold-dark); min-width: 96px; text-align: right; }
.menu-item { transition: .2s ease; }
.menu-item.hide { display: none; }

.check-list { padding: 0; margin: 28px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 900; margin-right: 10px; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.gallery-grid img { border-radius: var(--radius); width: 100%; height: 260px; }
.gallery-grid img:first-child { grid-row: span 2; height: 536px; }

.testimonial { background: #fff; padding: 28px; height: 100%; box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial footer { font-weight: 800; }

.reservation-section { padding: 90px 0; background: linear-gradient(135deg, var(--dark), #3b2516); color: #fff; }
.reservation-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.reservation-box p { color: rgba(255,255,255,.68); }
.reservation-form { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 28px; border-radius: var(--radius); }
.form-control, .form-select { border-radius: 14px; padding: 13px 14px; border: 1px solid rgba(0,0,0,.08); }
.form-label { font-weight: 700; }

.contact-list p { display: flex; align-items: flex-start; gap: 12px; }
.contact-list i { color: var(--gold-dark); font-size: 1.2rem; }
.map-placeholder { min-height: 420px; border-radius: var(--radius); background: linear-gradient(135deg, #ead7bd, #fff8ef); display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); }
.map-placeholder div { display: grid; gap: 8px; }
.map-placeholder i { font-size: 3rem; color: var(--gold-dark); }
.map-placeholder span { color: var(--muted); }

.footer p, .footer a { color: rgba(255,255,255,.65); }
.footer a { display: block; text-decoration: none; margin-top: 8px; }
.footer a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.2rem; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: #fff; font-size: 1.8rem; z-index: 1000;
  box-shadow: 0 14px 34px rgba(0,0,0,.2); text-decoration: none;
}

@media (max-width: 991px) {
  .section-padding { padding: 72px 0; }
  .hero-section .min-vh-100 { min-height: 760px !important; }
  .reservation-box { grid-template-columns: 1fr; }
  .main-img { height: 420px; }
}
@media (max-width: 767px) {
  .hero-section { text-align: left; }
  .hero-section .display-3 { font-size: 2.65rem; }
  .hero-info { font-size: .95rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { height: 260px; }
  .menu-row { flex-direction: column; }
  .menu-row strong { text-align: left; }
  .floating-note { position: static; margin: -42px auto 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
