:root {
  --bg: #f7f0e7;
  --bg-alt: #efe4d4;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: rgba(255,255,255,0.9);
  --text: #2d221b;
  --muted: #6f5a4c;
  --border: rgba(78, 52, 36, 0.14);
  --accent: #8d3f36;
  --accent-2: #a17b44;
  --accent-3: #6f7e58;
  --shadow: 0 20px 60px rgba(60, 34, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.6), transparent 34%),
    linear-gradient(180deg, #fbf6ef 0%, #f2e7d9 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(125, 91, 64, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.serif, h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); line-height: 0.95; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 0.98; margin-bottom: 0.8rem; }
h3 { font-size: 1.65rem; line-height: 1.05; margin-bottom: 0.45rem; }
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 42rem; }
.muted { color: var(--muted); }
.small { font-size: 0.94rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 239, 0.82);
  border-bottom: 1px solid rgba(78,52,36,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 78px;
  position: relative;
  overflow: visible;
}
.brand-wrap { display: flex; flex-direction: column; }
.brand { font-size: 2rem; line-height: 0.9; }
.brand-sub { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.nav-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: auto;
  width: min(340px, calc(100vw - 2rem));
  z-index: 1300;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.9rem;
  background: rgba(251, 246, 239, 0.98);
  border: 1px solid rgba(78,52,36,0.14);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(45, 34, 27, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  isolation: isolate;
}
.nav.is-open {
  display: flex;
  pointer-events: auto;
}
.nav a {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text);
  background: rgba(255,255,255,0.96);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(78,52,36,0.08);
  border-radius: 12px;
  opacity: 1;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.nav a.btn {
  width: 100%;
  color: #fff7ef !important;
  -webkit-text-fill-color: #fff7ef;
  background: var(--text);
  border-color: transparent;
}
.nav a:hover,
.nav a:focus-visible {
  background: rgba(255,255,255,1);
  color: var(--text) !important;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.92rem 1.3rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: 160ms ease;
}
.btn-primary { background: var(--text); color: #fff7ef; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); background: #1f1712; }
.btn-secondary { background: rgba(255,255,255,0.66); border-color: var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.92); }
.btn-link { color: var(--accent); padding: 0; font-weight: 700; }

.hero { padding: 2rem 0 4rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: stretch;
}
.hero-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.56));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.3rem; box-shadow: var(--shadow);
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 1.5rem 0 1.35rem; }
.facts { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.25rem; }
.fact-pill {
  padding: 0.55rem 0.8rem; border-radius: 999px; background: rgba(141,63,54,0.09);
  color: #643129; border: 1px solid rgba(141,63,54,0.14); font-size: 0.9rem; font-weight: 600;
}
.hero-visual {
  min-height: 620px; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; background: rgba(255, 248, 241, 0.88);
  backdrop-filter: blur(10px); border: 1px solid rgba(94,61,42,0.12); border-radius: 18px; padding: 1rem 1rem;
}

.info-grid, .card-grid, .two-col, .gallery-grid, .footer-grid, .page-grid {
  display: grid; gap: 1.25rem;
}
.info-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: 1fr 1fr; align-items: center; }
.page-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.footer-grid { grid-template-columns: 1.15fr 0.9fr 0.9fr; }
.card, .panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow);
}
.card-body, .panel-body { padding: 1.2rem; }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.utility-card { padding: 1.2rem; }
.utility-card strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }
.quote {
  padding: 1.35rem; background: rgba(255,255,255,0.74); border-radius: var(--radius-md); border: 1px solid var(--border);
}
.quote p { font-size: 1.05rem; margin-bottom: 0.8rem; }
.quote .source { color: var(--muted); font-size: 0.92rem; }
.section-accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
  border-top: 1px solid rgba(78,52,36,0.08); border-bottom: 1px solid rgba(78,52,36,0.08);
}
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(78,52,36,0.08);
}
.hours-list li:last-child { border-bottom: 0; }
.specials-empty {
  background: rgba(111,126,88,0.08); border: 1px solid rgba(111,126,88,0.18); border-radius: var(--radius-md); padding: 1.3rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.45rem 0.6rem; border-radius: 999px; background: rgba(161,123,68,0.12); color: #7e5928;
}
.map-wrap { min-height: 440px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }
.site-footer { padding: 3.5rem 0 5.75rem; border-top: 1px solid rgba(78,52,36,0.08); }
.footer-links { display: grid; gap: 0.55rem; }
.social-row, .inline-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.page-hero { padding: 4rem 0 2.25rem; }
.page-hero .panel-body { padding: 2rem; }
.menu-list { display: grid; gap: 1rem; }
.menu-item {
  display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(78,52,36,0.08);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item strong { font-size: 1.05rem; }
.menu-note { font-size: 0.95rem; color: var(--muted); }
.gallery-grid .card-media { aspect-ratio: 1 / 1.12; }
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  padding: 0.75rem 0.8rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(252,247,240,0.92); backdrop-filter: blur(12px); border-top: 1px solid rgba(78,52,36,0.1);
}
.mobile-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.mobile-bar .btn { width: 100%; padding-inline: 0.5rem; }

@media (max-width: 980px) {
  .hero-grid, .page-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 420px; }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    z-index: 1200;
    overflow: visible;
  }
  .header-inner {
    align-items: center;
    padding: 1rem 0;
    z-index: 90;
  }
  .hero { padding-top: 1rem; }
  .hero-copy { padding: 1.35rem; }
  .info-grid, .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .mobile-bar { display: block; }
  .site-footer { padding-bottom: 7rem; }
}
