:root {
  --primary: #b45309;
  --primary-dark: #a03f00;
  --primary-light: #f9f1eb;
  --text: #1c1917;
  --text-muted: #57534e;
  --bg: #fffefc;
  --bg-alt: #fcfaf6;
  --border: #e7e5e4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.25rem 0 6rem;
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
}
.brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.hero-content { max-width: 720px; margin: 5rem auto 0; text-align: center; padding: 0 2rem; }
.hero-content h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1rem; }
.hero-content .tagline { font-size: 1.3rem; opacity: 0.95; margin-bottom: 2.5rem; font-style: italic; }

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block; padding: 0.875rem 2rem; border-radius: 4px;
  text-decoration: none; font-weight: 600; transition: all 0.2s;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; letter-spacing: 0.02em;
}
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2); }
.btn-secondary { background: transparent; color: inherit; border: 1.5px solid currentColor; }
.btn-secondary:hover { background: currentColor; color: var(--bg); }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.section h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1.25rem; color: var(--primary); }
.lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Menu */
.menu-section { margin-bottom: 3rem; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 1rem 0; border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item strong { font-size: 1.1rem; font-family: 'Playfair Display', Georgia, serif; }
.menu-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0.25rem 0 0; }
.menu-item .price { color: var(--primary); font-weight: 700; font-family: 'Inter', sans-serif; font-size: 1.1rem; white-space: nowrap; }

/* Hours */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.hours { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; }
.hours td { padding: 0.625rem 0; border-bottom: 1px solid var(--border); }
.hours td:first-child { font-weight: 500; }
.hours td:last-child { text-align: right; color: var(--text-muted); }

.link-primary { color: var(--primary); text-decoration: none; font-weight: 600; }
.link-primary:hover { text-decoration: underline; }

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.cta-row .btn-primary { background: var(--primary); color: white; }
.cta-row .btn-primary:hover { background: var(--primary-dark); }
.cta-row .btn-secondary { color: var(--primary); border-color: var(--primary); }
.cta-row .btn-secondary:hover { background: var(--primary); color: white; }

.hint { color: var(--text-muted); font-style: italic; font-size: 0.9rem; margin-top: 2rem; }

/* Footer */
footer { padding: 2rem 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; font-family: 'Inter', sans-serif; }
footer a { color: var(--primary); text-decoration: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu-item { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
