:root {
  --ink: #1f1109;
  --paper: #fdf6ec;
  --paper-2: #f3e6d3;
  --line: #e2c9a8;
  --muted: #715a44;
  --accent: #b8431e;
  --accent-dark: #872d10;
  --olive: #5f6b3a;
  --max: 1120px;
  --serif: Georgia, "Times New Roman", "Cormorant Garamond", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans); color: var(--ink); line-height: 1.6;
  background: var(--paper); -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--serif); margin: 0 0 .4em; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw + 1rem, 4.2rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 2vw + 1.2rem, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.4rem; }
.narrow { max-width: 720px; }
.kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .76rem;
  color: var(--accent); font-weight: 700; margin: 0 0 .7rem;
}
.centered { text-align: center; }

/* Header */
.site-header { background: var(--ink); color: var(--paper); position: sticky; top: 0; z-index: 20; }
.header-row { display: flex; align-items: center; gap: 1.2rem; padding: .9rem 1.4rem; flex-wrap: wrap; }
.brand { font-family: var(--serif); font-size: 1.4rem; color: var(--paper); font-weight: 700; }
.site-header nav { margin-left: auto; display: flex; gap: 1.6rem; }
.site-header nav a { color: rgba(255,255,255,.85); font-size: .92rem; }
.site-header nav a:hover { color: var(--paper); }
.cta-call {
  background: var(--accent); color: var(--paper);
  padding: .55rem 1.1rem; border-radius: 4px; font-weight: 700;
}
.cta-call:hover { background: var(--accent-dark); color: var(--paper); text-decoration: none; }
@media (max-width: 640px) {
  .site-header nav { order: 3; width: 100%; justify-content: space-around; }
}

/* Hero */
.hero {
  background-size: cover; background-position: center;
  color: var(--paper);
  padding: 5.5rem 0 4rem;
}
.hero-inner { max-width: 760px; }
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .8rem;
  color: rgba(255,255,255,.85); font-weight: 700; margin-bottom: 1rem;
}
.hero h1 { color: var(--paper); }
.lede { font-size: 1.25rem; color: rgba(255,255,255,.9); font-family: var(--serif); font-style: italic; max-width: 560px; }
.hero-ctas { margin: 1.6rem 0 2rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.5rem; border-radius: 4px;
  font-weight: 700; transition: transform .12s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-dark); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--paper); border: 2px solid rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--paper); }

.quick-bar {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.quick-bar li {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: .6rem .9rem; border-radius: 4px;
  display: flex; flex-direction: column; gap: .15rem; min-width: 120px;
}
.quick-bar span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.quick-bar strong { color: var(--paper); font-size: .98rem; }

/* About */
.about { padding: 5rem 0; }
.lede-body { font-size: 1.12rem; color: var(--ink); }

/* Menu */
.menu-section { padding: 5rem 0; background: var(--paper-2); }
.menu-grid {
  display: grid; gap: 1.2rem; margin-top: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.menu-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 1.4rem 1.4rem 1.1rem; border-radius: 4px;
  border-top: 3px solid var(--accent);
}
.menu-card h3 { color: var(--ink); margin-bottom: .3rem; }
.menu-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Hours */
.hours-section { padding: 5rem 0; }
.hours { list-style: none; padding: 0; margin: 2rem auto 0; max-width: 540px; }
.hours li {
  display: flex; justify-content: space-between; padding: .7rem 0;
  border-bottom: 1px solid var(--line); font-size: 1rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { font-weight: 600; color: var(--ink); }
.hours li span:last-child { color: var(--muted); font-family: var(--serif); }

/* Reviews */
.reviews { padding: 5rem 0; background: var(--paper-2); }
.review-grid {
  display: grid; gap: 1.2rem; margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.reviews blockquote {
  background: var(--paper); border-left: 3px solid var(--accent);
  padding: 1.4rem; margin: 0;
}
.reviews p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); }
.reviews cite { color: var(--muted); font-style: normal; font-weight: 700; font-size: .9rem; }

/* Visit */
.visit { padding: 5rem 0; }
.two-col { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.big-phone { font-family: var(--serif); font-size: 2rem; margin: 1rem 0 1.5rem; }
.big-phone a { color: var(--ink); }
.addr { color: var(--muted); }
.badges { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.badges li {
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: .76rem; padding: .3rem .8rem; border-radius: 4px;
  color: var(--ink); font-weight: 600;
}
.map-wrap {
  position: relative; padding-top: 75%; overflow: hidden;
  border: 1px solid var(--line); border-radius: 4px;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 1.5rem 0; font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-row p { margin: 0; }
.site-footer a { color: var(--accent); }
