:root{
  --bg:#171a1e;
  --panel:#22272e;
  --sand:#d9d2c3;
  --rust:#b45309;
  --rust-dark:#8a3f08;
  --text:#e8e3d8;
  --text-dark:#16181b;
  --muted:#a8a39a;
  --line:#3a3f46;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--text);line-height:1.65}
a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:0 20px}

.site-header{position:sticky;top:0;z-index:20;background:rgba(23,26,30,.92);backdrop-filter:blur(6px);border-bottom:1px solid var(--line)}
.nav{min-height:98px;display:flex;align-items:center;justify-content:space-between}
.brand{text-decoration:none;font-weight:800;letter-spacing:.2px;display:flex;align-items:center}
.brand-logo{height:72px;width:auto;max-width:460px;display:block}
nav a{text-decoration:none;color:#d5d1c6;margin-left:18px}
nav a:hover{color:#fff}

.btn{display:inline-block;padding:12px 16px;border-radius:10px;border:1px solid transparent;background:var(--rust);color:#fff;text-decoration:none;font-weight:700;cursor:pointer}
.btn:hover{background:var(--rust-dark)}
.btn-small{padding:8px 12px}
.btn-outline{background:transparent;border-color:#b6aea0;color:#efe9dc}

.hero{position:relative;min-height:70vh;display:flex;align-items:end;padding:90px 0;background-size:cover;background-position:center}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.65))}
.hero > .container{position:relative;z-index:1;padding-bottom:30px}
.hero h1{font-size:clamp(2.1rem,5vw,4rem);line-height:1.05;margin:0 0 10px}
.hero p{max-width:760px;color:#dfd8cc}

.section{padding:64px 0}
.panel{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:22px}
.grid-2,.grid-3{display:grid;gap:18px}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.card{background:#252a31;border:1px solid #3a4048;border-radius:12px;padding:18px}
.card h3,.card h2{margin-top:0}

.image-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.image-strip img{width:100%;height:250px;object-fit:cover;border-radius:10px;border:1px solid var(--line)}
.feature-photo{width:100%;height:420px;object-fit:cover;border-radius:14px;border:1px solid var(--line)}

.location-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.county{background:#21262d;border:1px solid var(--line);border-radius:10px;padding:14px}
.county h3{margin:0 0 8px;color:#f3ede2}
.county p{margin:0;color:#c9c3b8;font-size:.95rem}

.site-footer{border-top:1px solid var(--line);padding:30px 0;color:var(--muted);margin-top:30px}
.site-footer .container{display:flex;flex-direction:column;align-items:center;text-align:center}
.footer-logo{height:86px;width:auto;max-width:560px;display:block;margin:0 auto}
.quote-form{display:grid;gap:12px;max-width:680px}
.quote-form input,.quote-form textarea{width:100%;padding:11px;border-radius:8px;border:1px solid #575e66;background:#111418;color:#f3ecdf}
.tiny{font-size:.85rem;color:#a7a095}

.before-after{display:grid;grid-template-columns:1fr 1fr;gap:14px}.before-after .panel{padding:10px}.before-after h3{margin:6px 0 8px}.before-after img{width:100%;height:280px;object-fit:cover;border-radius:10px;border:1px solid var(--line)}
.mobile-sticky-cta{display:none}
@media (max-width:900px){nav{display:none}.image-strip{grid-template-columns:1fr}.feature-photo{height:280px}.before-after{grid-template-columns:1fr}body{padding-bottom:78px}.mobile-sticky-cta{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:40;background:#111418;border-top:1px solid var(--line);padding:10px;gap:10px}.mobile-sticky-cta a{flex:1;text-align:center}.footer-logo{height:64px;max-width:90%}}