:root {
  --red: #8c1c13;
  --red-dark: #6b1510;
  --cream: #faf3e7;
  --cream-alt: #f1e6d3;
  --ink: #211a16;
  --gold: #c9a227;
  --green: #2f4a34;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

h1, h2 { font-family: var(--font-head); margin: 0; }

a { color: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
}
.logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.nav-cta {
  background: var(--red);
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.main-nav a.nav-cta:hover { background: var(--red-dark); color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,8,0.55) 0%, rgba(15,10,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 1.5rem;
  max-width: 700px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
}
.hero-content .tagline {
  font-size: 1.15rem;
  margin: 1rem 0 2rem;
  color: var(--cream-alt);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--cream); color: var(--cream); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* About */
.about { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img { border-radius: 6px; box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--red); }
.about-text p { margin: 0 0 1rem; }

/* Menu intro */
.menu-intro {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.menu-intro h2 { font-size: 2.2rem; color: var(--red); margin-bottom: 0.75rem; }

/* Menu sections */
.menu-section { padding: 3.5rem 1.5rem; }
.menu-section.alt-bg { background: var(--cream-alt); }
.section-inner { max-width: 900px; margin: 0 auto; }
.menu-section h2 {
  font-size: 2rem;
  color: var(--red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
}
.section-note {
  font-style: italic;
  color: #6b5c4f;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.photo-gallery {
  display: grid;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}
.photo-gallery.one-col { grid-template-columns: 1fr; max-width: 560px; }
.photo-gallery.two-col { grid-template-columns: 1fr 1fr; }
.photo-gallery.four-col { grid-template-columns: repeat(4, 1fr); }
.photo-gallery figure { margin: 0; }
.photo-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.photo-gallery.four-col img { height: 200px; }
.photo-gallery img.natural {
  width: auto;
  max-width: 100%;
  height: 440px;
  object-fit: contain;
  margin: 0 auto;
}
.photo-gallery.two-col { align-items: start; }
.photo-gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6b5c4f;
  text-align: center;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  border-bottom: 1px dashed #d8c9b3;
  padding-bottom: 0.6rem;
}
.item-name {
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.item-price {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.item-desc {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #5a4d42;
}

/* Visit */
.visit { background: var(--ink); color: var(--cream); padding: 5rem 1.5rem; }
.visit-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.visit img { border-radius: 6px; }
.visit-info p { margin: 0 0 1.3rem; }
.visit-info a { text-decoration: underline; color: var(--gold); }
.visit-info h2 { color: #fff; font-size: 2rem; margin-bottom: 1.2rem; }
.visit-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.visit-links .btn-outline { border-color: var(--gold); color: var(--gold); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  background: #150f0c;
  color: #a8998a;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 820px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .photo-gallery.two-col, .photo-gallery.four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    display: none;
    gap: 1rem;
    border-bottom: 3px solid var(--gold);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .photo-gallery.two-col, .photo-gallery.four-col { grid-template-columns: 1fr; }
  .photo-gallery img { height: 220px; }
  .photo-gallery img.natural { height: 340px; }
}
