:root {
  --cream: #f6efe4;
  --paper: #fbf7f0;
  --espresso: #2a1d16;
  --roast: #5a3a2a;
  --muted: #7a6558;
  --ember: #c2552b;
  --line: #e2d5c3;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 68px; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, .logo { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.05; }
h1 em { font-style: italic; font-weight: 400; color: var(--ember); }
h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.15; }
h3 { font-size: 22px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--ember); transform: translateY(-1px); }
.btn-small { padding: 9px 18px; font-size: 15px; }
.btn-ghost { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
.link { font-weight: 500; text-decoration: none; color: var(--roast); }
.link:hover { color: var(--ember); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 24px; text-decoration: none; }
.logo span { color: var(--ember); font-style: italic; font-weight: 400; }
.nav nav { display: flex; gap: 36px; }
.nav nav a { text-decoration: none; font-weight: 500; color: var(--roast); }
.nav nav a:hover { color: var(--ember); }

/* Hero */
.hero { padding: 56px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.lead { font-size: 19px; color: var(--muted); margin: 22px 0 32px; max-width: 30em; }
.actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-img img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  border-radius: 200px 200px 16px 16px;
  box-shadow: 0 30px 60px -30px rgba(42, 29, 22, 0.45);
}

/* Strip */
.strip { background: var(--espresso); color: var(--cream); padding: 30px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.strip-grid div { display: flex; flex-direction: column; }
.strip-grid strong { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.strip-grid span { color: #cbb8a6; font-size: 15px; }

/* Menu */
.menu { padding: 96px 0; background: var(--cream); }
.section-head { margin-bottom: 48px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.menu-col h3 { padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--espresso); }
.menu-col li { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; }
.menu-col li i { flex: 1; border-bottom: 1px dotted #b9a592; transform: translateY(-4px); }
.menu-col li b { font-weight: 600; font-variant-numeric: tabular-nums; }

/* Story */
.story { padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.story-img img { border-radius: 16px; aspect-ratio: 1; object-fit: cover; }
.story-copy h2 { margin-bottom: 20px; }
.story-copy p:not(.eyebrow) { color: var(--muted); margin-bottom: 16px; max-width: 34em; }
.story-copy .btn { margin-top: 12px; }

/* Things to do */
.todo { padding: 96px 0; background: var(--cream); }
.todo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.todo-head { padding: 8px 24px 8px 0; }
.todo-head h2 { margin-bottom: 16px; }
.todo-head p:not(.eyebrow) { color: var(--muted); }
.todo-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.todo-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(42, 29, 22, 0.35); }
.todo-card .num { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ember); margin-bottom: 10px; }
.todo-card h3 { margin-bottom: 8px; }
.todo-card p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.todo-card .when {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe2d0;
  color: var(--roast);
}

/* Visit */
.visit { padding: 88px 0; background: var(--roast); color: var(--cream); }
.visit .eyebrow { color: #f0a47c; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.visit h2 { margin-bottom: 24px; }
.visit address { font-style: normal; font-size: 20px; margin-bottom: 16px; }
.visit a { color: var(--cream); text-decoration-color: rgba(246, 239, 228, 0.4); text-underline-offset: 3px; }
.hours { background: rgba(0, 0, 0, 0.18); border-radius: 16px; padding: 32px 36px; }
.hours h3 { margin-bottom: 12px; }
.hours li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(246, 239, 228, 0.15); }
.hours li b { font-weight: 600; font-variant-numeric: tabular-nums; }
.note { margin-top: 18px; font-size: 15px; color: #d9c6b4; }

/* Footer */
.footer { background: var(--espresso); color: #cbb8a6; padding: 28px 0; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer .logo { color: var(--cream); font-size: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr; gap: 40px; }
  .strip-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero { padding: 32px 0 56px; }
  .hero-img { order: -1; }
  .hero-img img { border-radius: 140px 140px 16px 16px; aspect-ratio: 4 / 3; }
  .menu, .story, .visit, .todo { padding: 64px 0; }
  .todo-grid { grid-template-columns: 1fr 1fr; }
  .todo-head { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 560px) {
  .todo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav nav { display: none; }
}
