:root {
  --accent: #164f3e;
  --ink: #171a17;
  --paper: #f7f0e6;
  --cream: #fffaf2;
  --line: rgba(28, 26, 23, .16);
  --hero-image: url("assets/traditional-exterior-wide.webp");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--paper); }
a { color: inherit; }
.topbar { position: fixed; inset: 0 0 auto; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px clamp(18px, 4vw, 48px); color: white; background: linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,0)); }
.brand { font-family: Georgia, serif; font-size: 21px; text-decoration: none; }
.nav { display: flex; gap: 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.nav a { text-decoration: none; }
.hero { min-height: 92vh; display: flex; align-items: flex-end; padding: 120px clamp(20px, 6vw, 78px) 72px; color: white; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72)), var(--hero-image) center/cover; }
.hero-content { max-width: 760px; }
.eyebrow { display: inline-flex; max-width: 100%; padding: 8px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(0,0,0,.22); font-size: 13px; line-height: 1.35; }
h1 { margin: 18px 0 14px; font-family: Georgia, serif; font-size: clamp(44px, 8vw, 82px); line-height: .98; font-weight: 500; }
h2 { margin: 0 0 14px; font-family: Georgia, serif; font-size: clamp(27px, 4vw, 44px); line-height: 1.05; font-weight: 500; }
p { line-height: 1.65; }
.hero p { max-width: 650px; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 16px; border-radius: 999px; background: var(--accent); color: white; text-decoration: none; font-weight: 700; }
.btn.ghost { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); }
section { padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px); }
.facts, .proof-grid, .visit { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(22px, 5vw, 56px); align-items: start; }
.lead { max-width: 720px; font-size: 17px; color: rgba(25,25,25,.72); }
.fact-card { border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: rgba(255,255,255,.55); }
dl { display: grid; grid-template-columns: 112px 1fr; gap: 12px; margin: 0; }
dt { font-weight: 800; color: var(--accent); }
dd { margin: 0; }
.menu { background: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-top: 24px; }
.menu-item { min-height: 122px; border-top: 3px solid var(--accent); background: white; border-radius: 8px; padding: 18px; font-weight: 800; }
.proof { background: #fffaf2; }
.proof li, .hours li { margin: 0 0 11px; line-height: 1.55; }
.photo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 22px; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; }
.visit { background: var(--ink); color: white; }
.visit .lead { color: rgba(255,255,255,.75); }
.visit-card .btn { background: white; color: var(--ink); }
.map-wrap { min-height: 360px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); }
iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
footer { padding: 26px clamp(18px, 5vw, 72px) 92px; background: var(--ink); color: rgba(255,255,255,.72); }
.mobile-actions { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 12; display: none; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-actions a { min-height: 48px; border-radius: 999px; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
@media (max-width: 760px) {
  .nav { display: none; }
  .hero { min-height: 88vh; padding: 108px 18px 62px; }
  h1 { font-size: 46px; }
  .hero p { font-size: 16px; }
  .facts, .proof-grid, .visit { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  dl { grid-template-columns: 1fr; gap: 5px; }
  .mobile-actions { display: grid; }
}
