:root {
  --ink: #2a2724;
  --muted: #6e6860;
  --line: #ddd6cb;
  --paper: #f4f0ea;
  --card: #fffdf9;
  --accent: #6b5a45;
  --charcoal: #1c1a18;
  --pad: clamp(16px, 4vw, 28px);
  --tap: 44px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 56px; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  overflow-x: clip;
  overflow-anchor: none;
}
body {
  min-width: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
.ico { display: inline-block; vertical-align: -0.2em; flex: 0 0 auto; }
.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px var(--pad) 72px;
  min-width: 0;
  flex: 1 1 auto;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 16px;
  width: 100%;
  margin: 0;
  padding: 6px max(var(--pad), calc((100% - 1080px) / 2 + var(--pad)));
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 234, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  min-width: 0;
}
.brand img { width: 34px; height: 34px; flex: 0 0 auto; }
.brand b {
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}
.site-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  min-width: 0;
}
.site-head nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
  padding: 6px 10px;
}
.site-head nav a:hover,
.site-head nav a.active {
  color: var(--ink);
}
.site-head nav a.active {
  box-shadow: inset 0 -2px 0 var(--ink);
}
h1 {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 30px);
  margin-bottom: 10px;
}
h3 { font-weight: 400; font-size: 20px; }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 18px); line-height: 1.55; }
.banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 14px 16px;
  margin: 20px 0 0;
  font-size: 15px;
}
.period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.item, .feature, .rail-card { cursor: pointer; }
.allergens, .meta-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  margin-top: 8px;
  line-height: 1.4;
}
.price { font-variant-numeric: tabular-nums; white-space: nowrap; margin-top: 10px; }
.old { text-decoration: line-through; color: var(--muted); margin-right: 8px; }
label { display: block; font-size: 13px; margin: 16px 0 6px; color: var(--muted); }
input, textarea, select {
  width: 100%;
  max-width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
}
input:focus, textarea:focus, select:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}
button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  background: var(--charcoal);
  color: var(--paper);
  border: 0;
  padding: 11px 18px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
}
form button, .hero-actions .btn, .section .btn, p .btn { margin-top: 18px; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.note { color: var(--muted); font-size: 14px; margin-top: 16px; }
.closed { opacity: 0.55; }
.chip {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 4px 8px;
}
.allergy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.allergens .chip { margin-top: 0; }

.hero {
  position: relative;
  margin: 8px 0 8px;
  min-width: 0;
}
.hero img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover;
}
.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(28px, 6vw, 56px) clamp(16px, 4vw, 36px) clamp(20px, 4vw, 36px);
  background: linear-gradient(to top, rgba(28, 26, 24, 0.78), transparent);
  color: #f4f0ea;
}
.hero-copy .lede { color: #d8d2c8; max-width: 520px; margin: 10px 0 0; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.hero-actions .ghost { color: #f4f0ea; border-color: rgba(244, 240, 234, 0.45); }

.section { margin: clamp(48px, 8vw, 80px) 0; }
.section .lede { margin-bottom: 24px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.split img { width: 100%; height: 340px; object-fit: cover; }
.split.rev { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.about-photos img { height: 220px; object-fit: cover; width: 100%; }
.about-photos img:first-child { grid-column: 1 / -1; height: 240px; }

.hours { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hour-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  min-width: 0;
}
.hour-card strong { text-transform: capitalize; font-weight: 400; font-size: 18px; }
.hour-card span { color: var(--muted); font-size: 15px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--line); padding: 0 0 18px; min-width: 0; }
.feature img { width: 100%; height: 210px; object-fit: cover; margin-bottom: 12px; }
.feature h3, .feature p, .feature .period, .feature .price, .feature .chip { padding-left: 16px; padding-right: 16px; }
.feature p { color: var(--muted); font-size: 15px; line-height: 1.45; }

.rail-wrap { margin: 8px 0 36px; min-width: 0; }
.rail-wrap .period { margin-bottom: 12px; font-size: 13px; }
.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); }
.rail-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  padding-bottom: 14px;
  min-width: 0;
}
.rail-card img { width: 100%; height: 150px; object-fit: cover; }
.rail-card h3, .rail-card p, .rail-card .period, .rail-card .price, .rail-card .chip { padding: 0 12px; }
.rail-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.event-card { border: 1px solid var(--line); background: var(--card); padding: 20px; min-width: 0; }
.event-card ul { margin: 12px 0 0 18px; color: var(--muted); font-size: 15px; }
.event-card li { margin-bottom: 4px; }

.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.member { padding: 20px; border: 1px solid var(--line); background: var(--card); min-width: 0; }
.member .role {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.member p { color: var(--muted); margin-top: 8px; line-height: 1.45; }
.member.gm { grid-column: 1 / -1; }
.member.gm h3 { font-size: clamp(22px, 3vw, 26px); }
.page-photo {
  width: 100%;
  height: clamp(160px, 28vw, 260px);
  object-fit: cover;
  margin: 0 0 20px;
}

.branch {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px 20px;
  margin: 28px 0;
}
.branch h2 { margin-bottom: 12px; }
.visit-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0 8px; }
.visit-list p { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); line-height: 1.45; }
.map-frame { width: 100%; height: clamp(220px, 36vw, 280px); border: 1px solid var(--line); background: #eee; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-grid .full { grid-column: 1 / -1; }

.site-foot {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.foot-brand { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.foot-brand img { width: 36px; height: 36px; }
.foot-brand b {
  display: block;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
}
.foot-hours { display: flex; flex-direction: column; gap: 8px; }
.foot-hours div { display: flex; align-items: center; gap: 8px; text-transform: capitalize; }
.foot-meta p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; overflow-wrap: anywhere; }
.foot-meta nav { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 14px; color: var(--ink); }
.foot-meta nav a { min-height: var(--tap); display: inline-flex; align-items: center; }

.dish-viewer { position: fixed; inset: 0; z-index: 50; display: none; }
.dish-viewer.open { display: block; }
.dv-backdrop { position: absolute; inset: 0; background: rgba(244, 240, 234, 0.94); }
.dv-stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 56px 80px;
}
.dv-card {
  max-width: 640px;
  width: 100%;
  max-height: calc(100dvh - 48px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
}
.dv-card img { width: 100%; height: min(300px, 36vh); object-fit: cover; }
.dv-body { padding: 24px 28px 28px; }
.dv-body .lede { margin: 8px 0 14px; }
.dv-event { display: flex; align-items: center; gap: 8px; color: var(--accent); font-size: 14px; margin-bottom: 8px; }
.dv-nav, .dv-close {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  min-width: var(--tap);
  min-height: var(--tap);
  padding: 8px 12px;
  margin: 0;
}
.dv-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.dv-next { right: 20px; top: 50%; transform: translateY(-50%); }
.dv-close {
  top: 16px;
  right: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dv-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

@media (max-width: 1199px) {
  .hours { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split img { height: 260px; }
  .team { grid-template-columns: 1fr 1fr; }
  .site-foot { grid-template-columns: 1fr 1fr; }
  .site-foot .foot-meta { grid-column: 1 / -1; }
  .hero img { height: 360px; }
  .about-photos img, .about-photos img:first-child { height: 180px; }
  .section { margin: clamp(36px, 6vw, 56px) 0; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 88px; }
  .site-head {
    align-items: center;
    min-height: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 2px 10px;
  }
  .brand { min-height: 36px; }
  .brand img { width: 30px; height: 30px; }
  .site-head nav { width: 100%; }
  .site-head nav a { flex: 1 1 auto; padding: 6px 8px; font-size: 13px; min-height: 40px; }
  .wrap { padding-top: 12px; padding-bottom: 56px; }
  .feature-grid, .event-grid, .form-grid, .team, .site-foot { grid-template-columns: 1fr; }
  .site-foot .foot-meta { grid-column: auto; }
  .hero {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
  }
  .hero img { height: 220px; }
  .hero-copy {
    position: relative;
    inset: auto;
    padding: 18px 0 0;
    background: none;
    color: var(--ink);
  }
  .hero-copy .lede { color: var(--muted); }
  .hero-actions .ghost { color: var(--ink); border-color: var(--line); }
  .page-photo { height: 160px; margin-bottom: 16px; }
  .dv-stage {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 60px 16px 88px;
    min-height: 100dvh;
  }
  .dv-card { max-height: calc(100dvh - 148px); }
  .dv-card img { height: min(200px, 28vh); }
  .dv-body { padding: 18px 16px 20px; }
  .dv-nav {
    position: fixed;
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .dv-prev { left: 16px; }
  .dv-next { right: 16px; }
  .dv-close { top: 10px; right: 10px; }
}

@media (max-width: 375px) {
  .hours { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hour-card { min-height: 0; padding: 14px 12px; }
  .hour-card strong { font-size: 16px; }
  .site-head {
    flex-direction: column;
    align-items: stretch;
    padding-top: 4px;
    padding-bottom: 4px;
    gap: 0;
  }
  .site-head nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }
  .site-head nav a {
    flex: 1 1 0;
    min-width: 0;
    font-size: 11px;
    padding: 4px 2px;
    min-height: 36px;
    gap: 3px;
  }
  .brand { min-height: 32px; }
  .brand b { letter-spacing: 0.1em; }
  .rail-card { flex-basis: min(260px, 82vw); }
  .section { margin: 32px 0; }
}
