:root {
  --bg: #f7f4ee;
  --fg: #161410;
  --muted: #6b645c;
  --line: #e6dfd4;
  --accent: #b08d57;
  --card: #fffdf8;
  --ok: #e8f0e4;
  --ok-fg: #1d3b22;
}
* { box-sizing: border-box }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: Inter, ui-sans-serif, system-ui, sans-serif }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
button, input, select, textarea { font: inherit; color: inherit }
button { cursor: pointer }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; flex-wrap: wrap }
.brand { font-weight: 650; letter-spacing: 0.04em }
.nav a, .nav-links a { font-size: 0.9rem; color: var(--muted) }
.nav a:hover, .nav-links a:hover { color: var(--fg) }
.nav-links { display: flex; gap: 1.15rem; align-items: center; flex-wrap: wrap }
.hero { display: grid; gap: 1.5rem; padding: 1.5rem 0 3rem }
@media (min-width: 860px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; align-items: center; min-height: 72vh }
}
.kicker { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700 }
h1 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.95; margin: 0.4rem 0 1rem }
h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0.2rem 0 0.6rem }
h3 { margin: 0.2rem 0 0.4rem; font-size: 1.05rem }
.lead { color: var(--muted); line-height: 1.65; max-width: 42ch }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 2.75rem;
  padding: 0 1.15rem; border-radius: 999px; border: 0; background: var(--fg); color: var(--bg); font-weight: 600;
}
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line) }
.btn.wide { width: 100% }
.grid { display: grid; gap: 1rem }
@media (min-width: 700px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr) }
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr) }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr) }
}
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden }
.card img { width: 100%; height: 240px; object-fit: cover }
.pad { padding: 1rem 1.1rem 1.2rem }
.price { font-weight: 650 }
.muted { color: var(--muted) }
.toast {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--fg); color: var(--bg); padding: 0.7rem 1rem; border-radius: 999px; font-size: 0.85rem; z-index: 40;
}
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(24rem, 100%); background: var(--card);
  border-left: 1px solid var(--line); padding: 1.25rem; z-index: 30; box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  overflow: auto;
}
.drawer[hidden], .scrim[hidden], .ok[hidden], [hidden] { display: none !important }
.scrim { position: fixed; inset: 0; background: rgba(20,16,12,0.35); z-index: 20 }
footer { padding: 3rem 0; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); margin-top: 3rem }
.form { display: grid; gap: 0.7rem; margin-top: 1rem }
.form input, .form textarea, .form select {
  min-height: 2.75rem; border: 1px solid var(--line); border-radius: 12px; padding: 0.7rem 0.85rem; background: #fff;
}
.ok { padding: 1rem; border-radius: 14px; background: var(--ok); color: var(--ok-fg); margin-top: 0.8rem }
section { padding: 1rem 0 2.6rem }
.sale {
  background: var(--fg); color: var(--bg); text-align: center; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.55rem 1rem; font-weight: 650;
}
.old { text-decoration: line-through; color: var(--muted); margin-inline-end: 0.4rem }
.quote { border-inline-start: 2px solid var(--accent); padding-inline-start: 1rem; color: var(--muted); line-height: 1.6 }
.hours { display: grid; gap: 0.45rem; max-width: 22rem }
.hours div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding: 0.4rem 0 }
.hero-photo { border-radius: 22px; height: min(70vh, 520px); width: 100%; object-fit: cover }
.chip { display: inline-flex; min-height: 2rem; align-items: center; border-radius: 999px; border: 1px solid var(--line); padding: 0 0.7rem; font-size: 0.78rem; color: var(--muted) }
.row { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center }
.count { display: inline-grid; place-items: center; min-width: 1.25rem; height: 1.25rem; border-radius: 999px; background: var(--fg); color: var(--bg); font-size: 0.7rem; font-weight: 700 }

.yesod-demo-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.9rem;
  background: #fff;
  color: #171717;
  border-bottom: 1px solid #ececec;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
}
.yesod-demo-back {
  font-weight: 650;
  color: #171717 !important;
}
.yesod-demo-name { color: #737373; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
html.has-demo-bar { scroll-padding-top: 3rem }

.bleed { width: 100%; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  flex-wrap: wrap;
}
.cal {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 1rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  font-size: 0.78rem;
  text-align: center;
}
.cal-grid button, .cal-grid span {
  min-height: 2rem;
  border: 0;
  background: transparent;
  border-radius: 8px;
}
.cal-grid button[data-day] { cursor: pointer }
.cal-grid button[data-day]:hover, .cal-grid button.is-on { background: var(--fg); color: var(--bg) }
.slots { display: grid; gap: 0.4rem; margin-top: 0.8rem }
.slots button {
  min-height: 2.2rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}
.slots button.is-on { background: var(--fg); color: var(--bg); border-color: var(--fg) }
.work-grid { display: grid; gap: 0.55rem }
@media (min-width: 800px) {
  .work-grid { grid-template-columns: repeat(4, 1fr) }
}
.work-grid figure { margin: 0 }
.work-grid img { width: 100%; height: 180px; object-fit: cover }
.work-grid figcaption { padding: 0.45rem 0.1rem 0.8rem; font-size: 0.78rem; color: var(--muted) }
.work-grid button { all: unset; cursor: pointer; display: block; width: 100% }
