:root{
  --bg:#fbf6ef;
  --paper:#fffaf3;
  --ink:#141312;
  --muted:#5b544e;
  --line:rgba(20,19,18,.14);
  --accent:#b07a5b;   /* terracotta */
  --accent2:#6f8a7a;  /* sage */
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --radius:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(176,122,91,.12), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(111,138,122,.12), transparent 55%),
              var(--bg);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
.small{font-size:14px;color:var(--muted);line-height:1.6}
.muted{color:var(--muted)}
hr.sep{border:none;border-top:1px solid var(--line);margin:18px 0}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(251,246,239,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:12px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .name{
  font-weight:800; letter-spacing:.02em;
}
.brand img{height:40px;width:auto}

.menu{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.menu a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.menu a.active{
  color:var(--ink);
  background:rgba(20,19,18,.06);
  border:1px solid rgba(20,19,18,.08);
}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
}
.btn.primary{
  border:none;
  color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}

/* LAYOUT */
.card{
  background: var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section{padding:34px 0}
.hTitle{
  margin:0 0 6px;
  font-size:34px;
  letter-spacing:-.02em;
  font-weight:900;
}
.hSub{margin:0;color:var(--muted);line-height:1.7}

.grid2{display:grid;gap:16px;grid-template-columns:1fr 1fr}
.grid3{display:grid;gap:14px;grid-template-columns:repeat(3,1fr)}
@media(max-width:900px){
  .grid2,.grid3{grid-template-columns:1fr}
  .menu{display:none}
  .brand img{height:34px}
  .hTitle{font-size:30px}
}

/* HERO (similar to your inspo: image + text card) */
.hero{
  padding:26px 0 18px;
}
.heroBox{
  display:grid; gap:16px;
  grid-template-columns: 1.15fr .85fr;
}
@media(max-width:900px){
  .heroBox{grid-template-columns:1fr}
}
.heroPhoto{
  min-height:360px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22)),
    url("hero.jpg");
  background-size:cover;
  background-position:center;
}
.heroText{
  padding:22px;
}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.pill{
  font-size:13px;
  color:var(--muted);
  border:1px solid rgba(20,19,18,.14);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
}
.heroBtns{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* FEATURE LIST (checkmarks like inspo) */
.checkGrid{
  display:grid; gap:12px;
  grid-template-columns:1fr 1fr;
}
@media(max-width:900px){.checkGrid{grid-template-columns:1fr}}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px;
  border-radius:18px;
  border:1px dashed rgba(20,19,18,.14);
  background: rgba(255,255,255,.55);
}
.dot{
  width:26px;height:26px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(111,138,122,.16);
  border:1px solid rgba(111,138,122,.25);
  flex:0 0 auto;
}

/* SERVICES LIST */
.list{padding:18px}
.row{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom:1px dashed rgba(20,19,18,.14);
}
.row:last-child{border-bottom:none}
.row b{font-weight:900}
.note{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.6}

/* HOURS */
.hoursGrid{display:grid;gap:10px}
.hourRow{
  display:flex;justify-content:space-between;gap:10px;
  padding:10px 12px;border-radius:16px;
  background:#fff;border:1px solid rgba(20,19,18,.10);
}
.hourRow b{font-weight:900}

/* FOOTER */
footer{
  padding:26px 0 34px;
  color:var(--muted);
  font-size:13px;
}
.map{
  width:100%; height:320px;
  border:0;
  border-radius:18px;
}