/* template1 — skeleton styles. Enough to be readable, nothing more.
   Colours come from the client record via --primary / --accent; these are the defaults. */
:root { --primary: #1a3a5c; --accent: #e0562b; --ink: #1b1b1b; --muted: #5b6470; --line: #e3e6ea; --bg: #fff; }
* { box-sizing: border-box; }
body { margin: 0; font: 16px/1.5 system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--bg); }
a { color: var(--primary); }
main { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { line-height: 1.15; }
.placeholder { background: repeating-linear-gradient(45deg, #f2f3f5, #f2f3f5 10px, #e9ebee 10px, #e9ebee 20px); color: var(--muted); display: flex; align-items: center; justify-content: center; min-height: 160px; font-size: 13px; }
.button { display: inline-block; background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 6px; text-decoration: none; font-weight: 700; }

.site-header { display: flex; align-items: center; gap: 20px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.site-header .brand { font-weight: 800; color: var(--primary); text-decoration: none; font-size: 18px; }
.site-header .brand img { height: 32px; }
.site-header nav { display: flex; gap: 14px; margin-left: auto; }
.site-header nav a { text-decoration: none; color: var(--ink); }
.site-header nav a[aria-current] { font-weight: 700; border-bottom: 2px solid var(--accent); }
.site-header .phone { font-weight: 700; text-decoration: none; }

.hero { display: grid; gap: 24px; padding: 32px 0; }
.hero .hero-media { min-height: 260px; }
.hero .hero-media img { width: 100%; display: block; }
.hero .eyebrow { color: var(--accent); font-weight: 700; margin: 0; }
.hero h1 { font-size: clamp(28px, 5vw, 44px); margin: 8px 0; }
.hero .sub { font-size: 18px; color: var(--muted); }
.hero .rating { color: var(--muted); font-size: 14px; }
@media (min-width: 800px) { .hero { grid-template-columns: 1fr 1fr; align-items: center; } }

section { padding: 32px 0; border-top: 1px solid var(--line); }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card { display: block; border: 1px solid var(--line); border-radius: 8px; padding: 14px; text-decoration: none; color: inherit; }
.card .placeholder { min-height: 120px; margin-bottom: 10px; }
.card h3 { margin: 0 0 6px; color: var(--primary); }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.review { margin: 0; border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.review .stars { color: var(--accent); margin: 0 0 6px; }
.review cite { display: block; color: var(--muted); font-style: normal; font-size: 13px; margin-top: 8px; }
.review.sample { outline: 2px dashed #c9a; }

.faqs details { border-top: 1px solid var(--line); padding: 10px 0; }
.faqs summary { font-weight: 700; cursor: pointer; }

.cta { text-align: center; background: var(--primary); color: #fff; border-radius: 10px; padding: 36px 20px; margin: 32px 0; }
.cta a { color: #fff; }

.contact { display: grid; gap: 24px; }
@media (min-width: 800px) { .contact { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: block; margin-bottom: 12px; font-weight: 600; }
.contact-form input, .contact-form textarea { display: block; width: 100%; padding: 10px; border: 1px solid var(--line); border-radius: 6px; font: inherit; margin-top: 4px; }
.contact-form .consent { font-size: 12px; color: var(--muted); }
.contact-form button { background: var(--accent); color: #fff; border: 0; padding: 12px 20px; border-radius: 6px; font-weight: 700; }
.map { min-height: 200px; }

.service .lede { font-size: 18px; color: var(--muted); }
.service img, .post img { width: 100%; display: block; margin: 16px 0; }

.site-footer { display: grid; gap: 20px; padding: 32px 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; max-width: 1040px; margin: 0 auto; }
@media (min-width: 800px) { .site-footer { grid-template-columns: 1fr 1fr 1fr; } }
.site-footer .hours { list-style: none; padding: 0; margin: 6px 0 0; }
.site-footer .hours span { display: inline-block; min-width: 96px; }
