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

:root {
  --cream: #FAF6EF;
  --dark: #1A1208;
  --brown: #3D2B1F;
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --red: #8B2020;
  --text-muted: #7A6A5A;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-btn {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
}

.nav-btn:hover { background: var(--gold-light); color: var(--dark) !important; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D0906 0%, #1A1208 40%, #2A1A0E 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,32,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 620px;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.4);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-img {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  overflow: hidden;
}

.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1A1208 0%, transparent 60%);
  z-index: 1;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 2px;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 2px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--brown);
  padding: 1.8rem 5%;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat { text-align: center; color: var(--white); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===================== SECTIONS ===================== */
section { padding: 5rem 5%; }

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ===================== ABOUT ===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #2A1A0E, #3D2B1F);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-main .food-icon {
  font-size: 8rem;
  opacity: 0.3;
  position: absolute;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  text-align: center;
  box-shadow: 0 4px 20px rgba(200,146,42,0.3);
}

.badge-num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.65rem; letter-spacing: 1px; opacity: 0.9; }

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item { display: flex; align-items: flex-start; gap: 0.8rem; }

.feature-icon {
  width: 40px; height: 40px;
  background: rgba(200,146,42,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.feature-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ===================== MENU ===================== */
.menu-section { background: var(--dark); color: var(--white); }
.menu-section .section-title { color: var(--white); }
.menu-section .section-sub { color: rgba(255,255,255,0.5); }

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

.menu-tab {
  padding: 0.8rem 1.8rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  position: relative;
  transition: color 0.3s;
}

.menu-tab.active { color: var(--gold-light); }

.menu-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.menu-card:hover {
  background: rgba(200,146,42,0.08);
  border-color: rgba(200,146,42,0.3);
  transform: translateY(-4px);
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.menu-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 600; }
.menu-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold-light); font-weight: 700; }
.menu-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 1rem; }

.menu-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.menu-tag {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: rgba(200,146,42,0.15);
  color: var(--gold-light);
}

/* ===================== REVIEWS ===================== */
.testimonials { background: #F4EFE4; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.review-card:hover { transform: translateY(-4px); }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; font-weight: 300; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }

.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.reviewer-date { font-size: 0.78rem; color: var(--text-muted); }

/* ===================== RESERVATION ===================== */
.reservation { background: var(--dark); color: var(--white); text-align: center; }
.reservation .section-title { color: var(--white); }
.reservation .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 3rem; }

.res-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select option { background: var(--dark); }

/* ===================== FOOTER ===================== */
footer {
  background: #0D0906;
  color: rgba(255,255,255,0.5);
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); }

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.8rem; }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .hero-img { display: none; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .stats-bar { gap: 2rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
