:root {
  --forest: #33402c;
  --forest-dark: #232b1e;
  --cream: #faf6ee;
  --cream-alt: #f2ead9;
  --wood: #8a5a3c;
  --gold: #c9973f;
  --text: #2b2620;
  --text-light: #6b6455;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(43, 38, 32, 0.12);
  --shadow-sm: 0 4px 14px rgba(43, 38, 32, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.4em;
  color: var(--forest-dark);
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 0 0.6em;
}

.center { text-align: center; }
.section-lede.center { max-width: 560px; margin: 0 auto 2.5em; color: var(--text-light); }
h2.center { max-width: 640px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-call { background: var(--forest); color: var(--cream); padding: 10px 20px; font-size: 0.92rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.3rem; color: var(--forest-dark); }
.logo-sub { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--wood); }

.header-call { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--forest-dark); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,43,30,0.55) 0%, rgba(35,43,30,0.65) 55%, rgba(35,43,30,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 78px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin-bottom: 0.15em;
}
.hero-tagline { font-size: 1.25rem; max-width: 520px; margin-bottom: 1.6em; color: #f2ead9; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Highlights */
.highlights { background: var(--forest); padding: 34px 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.highlight-icon { font-size: 1.6rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text h2 { font-size: 2.2rem; }
.link-arrow { display: inline-block; margin-top: 0.5em; font-weight: 700; color: var(--wood); text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* Menu */
.menu-section { background: var(--cream-alt); }
.menu-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.menu-tab {
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}
.menu-tab.active, .menu-tab:hover { background: var(--forest); color: var(--cream); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.menu-group h3 {
  font-size: 1.15rem;
  color: var(--wood);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-top: 1.6em;
}
.menu-group h3:first-child { margin-top: 0; }
.menu-time { font-family: 'Nunito Sans', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--text-light); }

.menu-list { list-style: none; padding: 0; margin: 0 0 1em; }
.menu-list li { padding: 10px 0; border-bottom: 1px dashed rgba(43,38,32,0.12); }
.menu-list li p { margin: 4px 0 0; font-size: 0.88rem; color: var(--text-light); }
.menu-item-head { display: flex; justify-content: space-between; gap: 12px; font-weight: 700; }
.menu-item-head .price { white-space: nowrap; color: var(--wood); font-weight: 700; }

.menu-note { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 2em; }

/* Reservation */
.reservation-section { background: var(--cream); }
.reservation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.reservation-intro h2 { font-size: 2.2rem; }
.reservation-alt { font-weight: 700; margin-top: 1.5em; }
.reservation-alt a { color: var(--wood); text-decoration: none; }
.reservation-alt a:hover { text-decoration: underline; }

.reservation-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row-split { flex-direction: row; gap: 18px; }
.form-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.reservation-form label { font-weight: 700; font-size: 0.88rem; color: var(--forest-dark); }
.reservation-form input,
.reservation-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid rgba(43,38,32,0.18);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
}
.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.reservation-form textarea { resize: vertical; }
.reservation-form .btn { border: none; width: 100%; cursor: pointer; font-size: 1rem; }
.form-note { margin: 14px 0 0; font-size: 0.88rem; font-weight: 700; color: var(--wood); min-height: 1.2em; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Reviews */
.reviews-section { background: var(--forest); color: var(--cream); }
.reviews-section h2 { color: var(--cream); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3em;
  font-weight: 700;
}
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score { font-size: 1.3rem; }
.reviews-count { color: rgba(250,246,238,0.7); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.14);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
}
.review-card p { font-style: italic; margin-bottom: 1em; }
.review-card footer { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info h2 { font-size: 2.2rem; }
.hours-table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(43,38,32,0.1); font-weight: 600; }
.hours-table th { color: var(--text-light); font-weight: 600; width: 40%; }
.hours-table td.closed { color: #a15b4a; font-weight: 700; }

.contact-list { list-style: none; padding: 0; margin: 0 0 2em; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { text-decoration: none; font-weight: 700; color: var(--wood); }
.contact-list a:hover { text-decoration: underline; }
.contact-icon { margin-right: 8px; }

.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.site-footer { background: var(--forest-dark); color: rgba(250,246,238,0.75); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.footer-brand .logo-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; }
.footer-brand .logo-sub { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.footer-address, .footer-copy { font-size: 0.85rem; margin: 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,18,14,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: #fff;
  font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-call { display: none; }

  .about-grid, .contact-grid, .menu-columns, .reservation-grid { grid-template-columns: 1fr; }
  .form-row-split { flex-direction: column; gap: 18px; }
  .about-image { order: -1; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
