:root {
  --bg: #fdf6ee;
  --bg-soft: #f4ebdc;
  --ink: #2a1d12;
  --ink-soft: #5d4838;
  --accent: #b85742;
  --accent-deep: #8e3f30;
  --line: #e2d3bd;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body { min-height: 100svh; overflow-x: hidden; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: var(--accent-deep); }

.wrap { width: min(100% - clamp(2rem, 5vw, 4rem), 880px); margin-inline: auto; }

.demo-banner { display: block; background: var(--ink); color: var(--bg); padding: .65rem 1rem; font-size: .82rem; text-align: center; letter-spacing: .02em; border: 0; }
.demo-banner:hover { background: var(--ink-soft); color: var(--bg); }
.demo-banner strong { font-weight: 600; }

header { padding: 1.6rem 0; }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.brand { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; }
header nav { display: flex; gap: 1.2rem; font-size: .9rem; }
header nav a { color: var(--ink-soft); border: 0; }
header nav a:hover { color: var(--accent); }

.hero { padding: 2.5rem 0 3.5rem; }
.eyebrow { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 1.4rem + 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.02em; max-width: 16ch; margin-bottom: 1.4rem; }
.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn { display: inline-flex; align-items: center; padding: .85rem 1.4rem; border-radius: 999px; font-weight: 500; text-decoration: none; border: 1px solid transparent; transition: background .15s, color .15s, border-color .15s, transform .1s; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: var(--bg); border: 0; }
.btn.primary:hover { background: var(--accent-deep); color: var(--bg); }
.btn.ghost { color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }

section { padding: 2rem 0; }
.shead { display: flex; align-items: baseline; gap: 1rem; margin: 2rem 0 1.2rem; }
.shead .num { font-family: var(--serif); font-weight: 500; color: var(--accent); font-size: 1.2rem; }
.shead h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 1.1rem + 1vw, 2.1rem); letter-spacing: -.02em; }

.price-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: .55rem; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; padding: .85rem 1rem; background: var(--bg-soft); border-radius: 12px; }
.price-list li b { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--accent); }
.note { margin-top: 1.2rem; color: var(--ink-soft); font-size: .95rem; max-width: 56ch; }

.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.visit-grid h3 { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; margin-bottom: .5rem; }
.visit-grid p { color: var(--ink-soft); margin-bottom: .8rem; }
.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.hours li:last-child { border-bottom: 0; }
.hours li b { font-weight: 500; color: var(--ink); }

footer { margin-top: 3rem; padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .9rem; }
footer p { margin-bottom: .4rem; }
footer .small { font-size: .82rem; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
