* { box-sizing: border-box; }
body {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0; padding: 0;
  background: #fbf7f0; color: #2a1f15;
  line-height: 1.55;
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; background: rgba(251,247,240,0.95);
  border-bottom: 1px solid #e6dccd;
  position: sticky; top: 0;
}
.brand { font-size: 1.4rem; font-weight: 600; color: #2a1f15; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links a { color: #2a1f15; margin-left: 24px; text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover { color: #8a3324; }
.hero {
  background: linear-gradient(180deg, #fbf7f0 0%, #f5ebd9 100%);
  padding-bottom: 80px;
}
/* Lake Michigan hero image */
.hero-lake {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.hero-lake-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.hero-lake-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(251,247,240,0.15) 0%, rgba(251,247,240,0.65) 100%);
}
.hero-content { max-width: 720px; margin: 48px auto 0; padding: 0 32px; text-align: center; }
.hero h1 { font-size: 4rem; margin: 0 0 12px; letter-spacing: -0.02em; }
.tagline { font-size: 1.3rem; color: #6b5b48; margin-bottom: 32px; font-style: italic; }
.btn {
  display: inline-block; background: #8a3324; color: #fff;
  padding: 14px 28px; border-radius: 2px; text-decoration: none;
  font-family: "Helvetica Neue", sans-serif; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.btn:hover { background: #6a2519; }
.hours, .contact, .page { max-width: 720px; margin: 64px auto; padding: 0 32px; }
.hours h2, .contact h2, .page h1 { font-size: 2.25rem; margin: 0 0 24px; text-align: center; }
.page h1 { margin-bottom: 16px; }
.page { padding-top: 32px; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid #e6dccd;
}
.contact p { text-align: center; margin: 8px 0; color: #6b5b48; }
.contact a { color: #8a3324; }
.menu-section { margin-bottom: 48px; }
.menu-section h2 { font-size: 1.8rem; margin-bottom: 16px; border-bottom: 1px solid #e6dccd; padding-bottom: 8px; }
.menu-item { margin-bottom: 16px; }
.menu-item-row { display: flex; justify-content: space-between; align-items: baseline; }
.menu-item .name { font-weight: 600; font-size: 1.15rem; }
.menu-item .price { color: #8a3324; font-weight: 600; }
.menu-item .desc { color: #6b5b48; font-size: 0.95rem; margin: 4px 0 0; font-style: italic; }
.muted { color: #6b5b48; font-style: italic; font-size: 0.95rem; }
footer { text-align: center; padding: 32px; color: #8b7d6b; font-size: 0.9rem; border-top: 1px solid #e6dccd; }
