:root {
  --gold-dark: #8a6a1f;
  --gold: #c79a2e;
  --gold-light: #e9c968;
  --maroon: #7a1636;
  --maroon-dark: #591024;
  --cream: #fdf8ef;
  --cream-2: #f7ecd9;
  --ink: #2a1c10;
  --ink-soft: #5c4a37;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(42, 28, 16, 0.12);
}

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

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.4em;
}

p { line-height: 1.6; color: var(--ink-soft); }

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

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #2a1c10;
  box-shadow: 0 8px 20px rgba(199, 154, 46, 0.35);
}
.btn-outline {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  padding: 12px 28px;
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(122, 22, 54, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 56px; display: block; }
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,14,10,0.55) 0%, rgba(42,20,15,0.72) 55%, rgba(89,16,36,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 76px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 0.2em;
  background: linear-gradient(135deg, #e9c968, #c79a2e 45%, #f3dda0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-tagline {
  color: #f5e9d8;
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 2em;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.8;
  text-decoration: none;
  animation: bounce 2.2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Section shared */
.eyebrow {
  display: inline-block;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.eyebrow.center, .section-title.center, .section-sub.center {
  display: block;
  text-align: center;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { max-width: 520px; margin: 0 auto 40px; }

/* About */
.about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.badge {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--maroon);
}
.badge-num {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge-label { color: var(--ink-soft); font-weight: 600; }

/* Menu */
.menu { padding: 100px 0; background: var(--cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--gold-dark), var(--maroon)) 1;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card h3 { color: var(--maroon-dark); font-size: 1.25rem; }
.menu-card p { min-height: 48px; }
.price {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.05rem;
}

/* Gallery */
.gallery { padding: 100px 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item { overflow: hidden; aspect-ratio: 1 / 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Visit */
.visit { padding: 100px 0; }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.visit-address { font-size: 1.1rem; margin-bottom: 24px; }
.hours {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.hours h3 { font-size: 1.1rem; color: var(--maroon-dark); }
.hours ul { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(122,22,54,0.15);
  color: var(--ink-soft);
}
.hours li:last-child { border-bottom: none; }
.hours-note { font-size: 0.8rem; color: var(--ink-soft); opacity: 0.75; margin: 10px 0 0; }
.visit-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--maroon-dark);
  color: #f5e9d8;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo { height: 44px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-inner p { color: #e6d3c2; margin: 0; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid rgba(122,22,54,0.08);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(122,22,54,0.06); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .about-inner, .visit-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
