:root {
  /* Colour mix 2026-08-28 — plaster walls, Kombi pigment, one Med moment */
  --cream: #f6efe3;       /* plaster */
  --paper: #fbf7f0;
  --sand: #ead9b8;
  --mustard: #d4a017;     /* banquette / van / primary CTA */
  --mustard-deep: #b8860b;
  --wood: #4a2e1c;        /* timber */
  --ink: #2a1810;
  --bark: #6b4630;
  --terracotta: #9c4a2b;  /* tile / food */
  --olive: #2f6b3a;       /* hatch / secondary */
  --olive-deep: #245530;
  --muted: #7a6554;
  --line: rgba(42, 24, 16, 0.12);
  --shadow: 0 18px 40px rgba(42, 24, 16, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -3px 0 var(--mustard);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--mustard);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--terracotta); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mustard);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--mustard-deep); color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-ghost:hover { background: var(--olive); color: var(--paper); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--ink);
}

.hero { padding: 48px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 0.96;
  margin-bottom: 16px;
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--bark);
  max-width: 38ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual { position: relative; }
.hero-visual img.hero-shot {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.float-card {
  position: absolute;
  right: -12px;
  bottom: 24px;
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 16px 14px 18px;
  box-shadow: var(--shadow);
  width: 236px;
  border-left: 5px solid var(--mustard);
}
.float-card strong { display: block; font-family: "Fraunces", serif; }
.float-card span { color: var(--muted); font-size: 0.85rem; }

section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 8px 0 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.room-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 200px 150px 150px;
  gap: 10px;
}
.room-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.room-mosaic .span-2 {
  grid-row: 1 / 3;
  height: 100%;
}

.pill-list { display: grid; gap: 14px; margin-top: 20px; }
.pills-3 { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.pill {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  border-radius: 16px;
  padding: 16px 18px;
}
.accent-mustard { border-left-color: var(--mustard); }
.accent-terra { border-left-color: var(--terracotta); }
.accent-olive { border-left-color: var(--olive); }
.pill strong { display: block; margin-bottom: 4px; }
.pill span { color: var(--muted); font-size: 0.95rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
}
.card .num {
  font-family: "Fraunces", serif;
  color: var(--mustard-deep);
  font-size: 1.15rem;
}
.card.accent-olive .num { color: var(--olive); }
.card.accent-terra .num { color: var(--terracotta); }
.card.accent-mustard .num { color: var(--mustard-deep); }
.card h3 { margin: 8px 0; }
.card p { color: var(--muted); }

.featured { margin-bottom: 22px; }
.feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 8px 0 0 var(--terracotta);
}
.feature img { width: 100%; height: 280px; object-fit: cover; }
.feature div { padding: 28px; }
.feature h3 { font-size: 2rem; margin: 8px 0 10px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-grid.four,
.menu-grid.drinks-grid { grid-template-columns: repeat(4, 1fr); }
.menu-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-top: 5px solid var(--mustard);
  border-radius: 20px;
  padding: 22px;
}
.menu-card:nth-child(2) { border-top-color: var(--wood); }
.menu-card:nth-child(3) { border-top-color: var(--olive); }
.menu-card:nth-child(4) { border-top-color: var(--terracotta); }
.menu-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.menu-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; }
.item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.item:last-child { border-bottom: 0; }
.item small { display: block; color: var(--muted); font-size: 0.8rem; }
.item em { font-style: normal; color: var(--olive); font-size: 0.78rem; font-weight: 700; }
.note { margin-top: 18px; color: var(--muted); font-size: 0.92rem; }

.sando-row-wrap {
  margin: 0 0 28px;
}
.sando-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
}
.sando-row::-webkit-scrollbar { height: 8px; }
.sando-row::-webkit-scrollbar-thumb {
  background: var(--mustard);
  border-radius: 99px;
}
.sando {
  flex: 0 0 260px;
  margin: 0;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--mustard);
  scroll-snap-align: start;
}
.sando:nth-child(3n) { border-top-color: var(--olive); }
.sando:nth-child(3n+2) { border-top-color: var(--terracotta); }
.sando img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 40%;
}
.sando figcaption {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.9rem;
  padding: 10px 14px 12px;
}

.waitlist {
  background: var(--wood);
  color: var(--paper);
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: inset 8px 0 0 var(--mustard);
}
.waitlist h2 { font-size: 2.3rem; }
.waitlist p { color: #ead9b8; margin-top: 8px; }
.waitlist .eyebrow { color: var(--mustard); }
form { display: grid; gap: 10px; }
input, textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}
.waitlist .btn { background: var(--mustard); color: var(--ink); }
.form-msg { min-height: 1.2em; font-size: 0.92rem; }

.visit-box {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: inset 6px 0 0 var(--olive);
}
.visit-box dt {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.visit-box dd { font-size: 1.15rem; }

footer {
  background: var(--wood);
  color: var(--sand);
  padding: 28px 0 40px;
  box-shadow: inset 0 4px 0 var(--mustard);
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid, .split, .cards, .menu-grid, .menu-grid.four, .menu-grid.drinks-grid, .waitlist, .feature {
    grid-template-columns: 1fr;
  }
  .hero-visual img.hero-shot, .split img { height: 320px; }
  .pills-3 { grid-template-columns: 1fr; }
  .float-card { position: static; width: auto; margin-top: 12px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
