:root {
  --green:#4a6b47; --green-d:#3a5438; --sage:#a8caa0; --ink:#f3ebdd; --sub:#b6a892;
  --bg:#181109; --bg2:#271e16; --card:#312719; --line:#3d332a; --radius:18px;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --font-head:'Fraunces','Georgia','Times New Roman',serif;
}
* { box-sizing:border-box; }
html { -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body { margin:0; background:radial-gradient(140% 100% at 50% -10%, #2a2018 0%, #14100b 72%) fixed, var(--bg); color:var(--ink); line-height:1.55; font-family:var(--font-body); }
.wrap { max-width:980px; margin:0 auto; padding:0 22px; }
h1,h2,h3 { margin:0; color:var(--ink); font-family:var(--font-head); font-weight:600; letter-spacing:-0.01em; line-height:1.12; }
p { margin:0 0 1em; }
a { color:var(--sage); text-decoration:none; }
section { padding:100px 0; }
section h2 { font-size:clamp(30px,4.2vw,48px); font-weight:700; letter-spacing:-0.012em; text-align:center; }
.site-header { position:sticky; top:0; z-index:60; border-bottom:1px solid rgba(255,255,255,0.08);
  background:rgba(22,16,10,0.72); backdrop-filter:saturate(180%) blur(20px); -webkit-backdrop-filter:saturate(180%) blur(20px); }
.site-header .wrap { display:flex; justify-content:space-between; align-items:center; height:48px; }
.brand { font-weight:600; font-size:1.05rem; color:var(--ink); } .brand em { color:var(--sage); font-style:normal; }
.phone { font-weight:500; font-size:.9rem; color:var(--ink); }
.nav { display:flex; align-items:center; gap:30px; }
.nav a:not(.nav-cta) { position:relative; text-transform:uppercase; letter-spacing:0.1em; font-size:.76rem; font-weight:600; color:var(--ink); padding:6px 1px; transition:color .2s ease; }
.nav a:not(.nav-cta)::after { content:''; position:absolute; left:0; bottom:0; height:1.5px; width:0; background:var(--sage); transition:width .25s ease; }
.nav a:not(.nav-cta):hover, .nav a[aria-current] { color:var(--sage); }
.nav a:not(.nav-cta):hover::after, .nav a[aria-current]::after { width:100%; }
.nav-cta { background:var(--green); color:#fff; padding:9px 18px; border-radius:980px; font-weight:600; font-size:.85rem; transition:background .2s ease; }
.nav-cta:hover { background:var(--green-d); color:#fff; }
.nav-toggle { display:none; background:none; border:0; cursor:pointer; width:36px; height:36px; padding:8px; }
.nav-toggle span { display:block; height:2px; background:var(--ink); border-radius:2px; margin:4px 0; transition:transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
.footer-link a { font-weight:500; }
.blog { padding:48px 0 100px; }
.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.post-card { display:flex; flex-direction:column; background:var(--card); border-radius:var(--radius); overflow:hidden; color:var(--ink); transition:transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,0.1); }
.post-thumb { display:block; height:200px; background-size:cover; background-position:center; }
.post-card-body { display:flex; flex-direction:column; gap:8px; padding:22px 24px 26px; }
.post-cat { text-transform:uppercase; letter-spacing:0.1em; font-size:.72rem; font-weight:600; color:var(--sage); }
.post-card-body h3 { font-size:1.3rem; font-weight:600; }
.post-card-body p { color:var(--sub); margin:0; }
.post-date { color:var(--sub); font-size:.85rem; margin-top:4px; }
.post-article { max-width:720px; margin:0 auto; padding:64px 22px 40px; }
.post-article h1 { font-size:clamp(30px,4.5vw,52px); font-weight:700; margin:6px 0 26px; }
.post-article h2 { font-size:1.5rem; font-weight:600; margin:34px 0 12px; }
.post-article p { font-size:1.12rem; color:#d9cdba; margin:0 0 18px; }
.post-article .post-cat { display:block; margin-bottom:6px; }
.post-hero { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius); margin:0 0 30px; }
.post-back { max-width:720px; margin:0 auto 60px; padding:0 22px; }
@media (max-width:720px){ .post-grid{ grid-template-columns:1fr; } }
@media (max-width:760px) {
  .nav-toggle { display:block; }
  .nav { position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0; align-items:stretch; display:none;
    background:rgba(22,16,10,0.98); backdrop-filter:saturate(180%) blur(20px); border-bottom:1px solid var(--line); padding:10px 0 18px; }
  .nav.open { display:flex; }
  .nav a:not(.nav-cta) { text-align:center; padding:15px 0; font-size:.82rem; }
  .nav a:not(.nav-cta)::after { display:none; }
  .nav-cta { margin:12px auto 4px; }
}
.products-hero { background:var(--bg2); text-align:center; padding:84px 0 56px; }
.products-hero h1 { font-size:clamp(34px,5vw,62px); font-weight:700; letter-spacing:-0.012em; margin:8px 0 14px; }
.products-hero .lede { max-width:46ch; }
.products { padding:56px 0 100px; }
.bubble-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px 24px; }
.bubble { background:none; border:0; cursor:pointer; font:inherit; color:var(--ink); display:flex; flex-direction:column; align-items:center; gap:14px; }
.bubble-img { position:relative; width:124px; height:124px; border-radius:50%; display:grid; place-items:center; color:#fff; background:radial-gradient(circle at 32% 26%, var(--sage), var(--green)); box-shadow:0 12px 30px rgba(74,107,71,0.28); transition:transform .2s ease; }
.bubble:hover .bubble-img { transform:scale(1.06); }
.bubble-img svg { width:56px; height:56px; }
.bubble-img.big { width:108px; height:108px; margin:0 auto 4px; }
.bubble-img.big svg { width:48px; height:48px; }
.badge { position:absolute; bottom:8px; right:10px; background:#fff; color:var(--sage); font-size:.72rem; font-weight:700; padding:2px 8px; border-radius:980px; }
.bubble-label { font-weight:600; font-size:1.05rem; }
.modal { position:fixed; inset:0; z-index:100; background:rgba(0,0,0,0.45); display:grid; place-items:center; padding:20px; }
.modal[hidden] { display:none; }
.modal-card { background:var(--card); border-radius:22px; max-width:480px; width:100%; padding:38px 34px; position:relative; text-align:center; max-height:88vh; overflow:auto; }
.modal-close { position:absolute; top:14px; right:16px; border:0; background:#3a302a; width:32px; height:32px; border-radius:50%; font-size:1.3rem; line-height:1; cursor:pointer; color:var(--sub); }
.modal-card h2 { font-size:1.7rem; font-weight:700; margin:4px 0 12px; }
.modal-card h3 { font-size:1rem; font-weight:600; margin:24px 0 12px; }
.modal-card p { color:var(--sub); } .modal-card .m-note { font-size:.92rem; margin-top:14px; }
.modal-card ul { text-align:left; max-width:300px; margin:0 auto; color:var(--sub); padding-left:20px; } .modal-card li { margin:5px 0; }
.swatches { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; }
.swatches span { display:flex; flex-direction:column; align-items:center; gap:7px; font-size:.78rem; color:var(--sub); }
.swatches i { width:48px; height:48px; border-radius:50%; display:block; }
@media (max-width:720px){ .bubble-grid{ grid-template-columns:repeat(2,1fr); gap:30px 16px; } .bubble-img{ width:104px; height:104px; } }
.hero { background:linear-gradient(rgba(20,28,18,0.46),rgba(20,28,18,0.62)), url('/img/hero.webp') center/cover no-repeat; color:#fff; text-align:center; padding:132px 0 120px; }
.hero .wrap { max-width:800px; }
.hero h1, .hero .offer, .hero .offer strong { color:#fff; }
.hero .lede { color:#eaeee6; }
.hero .trust-strip { color:#dde5d9; }
.hero .cta-link { color:#fff; }
.eyebrow { color:var(--sage); font-weight:600; font-size:1.05rem; margin:0 0 12px; text-transform:none; letter-spacing:0; }
.hero h1 { font-size:clamp(40px,7vw,82px); font-weight:700; letter-spacing:-0.012em; margin:0 0 20px; }
.lede { font-size:clamp(19px,2.3vw,27px); font-weight:400; color:var(--sub); max-width:32ch; margin:0 auto 16px; line-height:1.3; }
.offer { font-size:1.06rem; color:var(--ink); max-width:48ch; margin:0 auto 28px; }
.offer strong { font-weight:600; }
.cta { display:inline-block; background:var(--green); color:#fff; font-weight:500; font-size:1.06rem; padding:13px 28px; border-radius:980px; }
.cta:hover { background:var(--green-d); }
.cta-link { display:inline-block; margin-left:18px; font-size:1.06rem; font-weight:500; }
.cta-link:hover { text-decoration:underline; }
.trust-strip { list-style:none; display:flex; flex-wrap:wrap; justify-content:center; gap:6px 24px; padding:30px 0 0; margin:0; font-size:.93rem; color:var(--sub); }
.trust-strip li { position:relative; }
.trust-strip li+li::before { content:"•"; position:absolute; left:-14px; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; }
.svc-grid article { background:var(--card); border-radius:var(--radius); padding:32px 26px; text-align:center; }
.svc-grid h3 { font-size:1.35rem; font-weight:600; margin:0 0 8px; }
.svc-grid p { color:var(--sub); margin:0; }
.map-area { background:var(--bg2); text-align:center; }
.map-area .sub { color:var(--sub); font-size:1.15rem; margin:6px 0 22px; }
.zip-check { display:flex; gap:10px; max-width:440px; margin:0 auto 6px; }
.zip-check input { flex:1; padding:14px 18px; border:1px solid var(--line); border-radius:980px; font:inherit; background:var(--card); color:var(--ink); }
.zip-check button { background:var(--green); color:#fff; border:0; font-weight:500; padding:0 26px; border-radius:980px; cursor:pointer; white-space:nowrap; }
.zip-check button:hover { background:var(--green-d); }
#zip-result { min-height:1.4em; font-weight:500; margin:0 0 18px; }
#zip-result.ok { color:var(--sage); } #zip-result.err { color:#b1483a; }
#map { height:460px; width:100%; border-radius:var(--radius); border:1px solid var(--line); z-index:0; }
.map-note { color:var(--sub); font-size:.85rem; margin-top:10px; }
.band { background:linear-gradient(rgba(18,24,16,0.52),rgba(18,24,16,0.6)), url('/img/band-install.jpg') center/cover no-repeat; color:#fff; text-align:center; padding:140px 0; }
.band-inner { max-width:740px; margin:0 auto; padding:0 22px; }
.band h2 { color:#fff; }
.band-eyebrow { color:#dbe6d7; font-weight:600; margin:0 0 12px; }
.band p { color:#eef2ec; font-size:1.1rem; margin:14px 0 26px; }
.repair-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.repair-grid img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius); }
.repair-text h2 { text-align:left; }
.repair-text p { color:var(--sub); font-size:1.1rem; margin:16px 0 18px; }
.modal-photo { width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:14px; margin:0 auto 16px; display:block; }
.modal-photo.contain { object-fit:contain; background:#efece4; }
.snow { background:var(--green); color:#eef3ec; text-align:center; }
.snow h2 { color:#fff; }
.lede2 { font-size:clamp(18px,2vw,23px); color:#dbe6d7; max-width:60ch; margin:18px auto 22px; line-height:1.4; }
.cta-ghost { display:inline-block; color:#fff; font-weight:500; font-size:1.05rem; border-bottom:1px solid rgba(255,255,255,0.5); padding-bottom:2px; }
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:44px; }
.why-grid div { background:var(--card); border-radius:var(--radius); padding:26px 28px; display:flex; flex-direction:column; gap:6px; }
.why-grid strong { font-size:1.2rem; font-weight:600; color:var(--ink); }
.why-grid span { color:var(--sub); }
.reviews { background:var(--bg2); text-align:center; }
.rating { font-size:1.2rem; color:var(--ink); margin:10px 0 36px; } .rating span { color:var(--sub); font-size:1rem; }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-grid blockquote { margin:0; background:var(--card); border-radius:var(--radius); padding:28px; text-align:left; font-size:1.05rem; line-height:1.45; color:var(--ink); }
.review-grid cite { display:block; margin-top:14px; font-style:normal; font-weight:600; color:var(--sub); font-size:.95rem; }
.gallery { text-align:center; }
.ph-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.ph-grid img { width:100%; aspect-ratio:1; object-fit:cover; border-radius:var(--radius); display:block; }
.quote .sub { text-align:center; color:var(--sub); font-size:1.15rem; max-width:48ch; margin:8px auto 38px; }
form { max-width:600px; margin:0 auto; }
.row { display:flex; gap:16px; } .row>label { flex:1; }
label { display:block; margin:0 0 16px; font-weight:500; font-size:.95rem; color:var(--ink); }
input,select,textarea { width:100%; margin-top:7px; padding:13px 15px; border:1px solid var(--line); border-radius:12px; font:inherit; background:var(--card); color:var(--ink); }
.consent { display:flex; gap:10px; align-items:flex-start; font-weight:400; font-size:.9rem; color:var(--sub); }
.consent input { width:auto; margin-top:4px; }
.hp { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
button[type=submit] { background:var(--green); color:#fff; border:0; font-weight:500; font-size:1.06rem; padding:14px 32px; border-radius:980px; cursor:pointer; }
button[type=submit]:hover { background:var(--green-d); }
#form-result { margin-top:16px; font-weight:500; min-height:1.4em; }
#form-result.ok { color:var(--sage); } #form-result.err { color:#b1483a; }
.faq .wrap { max-width:760px; }
.faq details { border-bottom:1px solid var(--line); padding:18px 0; }
.faq summary { cursor:pointer; font-weight:600; font-size:1.15rem; color:var(--ink); list-style:none; }
.faq summary::-webkit-details-marker { display:none; }
.faq p { margin:12px 0 0; color:var(--sub); }
.site-footer { background:var(--bg2); color:var(--sub); text-align:center; padding:48px 0; }
.site-footer strong { color:var(--ink); }
.sticky-cta { position:fixed; left:0; right:0; bottom:0; display:none; z-index:55; box-shadow:0 -1px 0 rgba(0,0,0,0.12); }
.sticky-cta a { flex:1; text-align:center; padding:15px; font-weight:500; }
.sticky-cta .call { background:var(--green); color:#fff; } .sticky-cta .book { background:var(--card); color:var(--sage); }
@media (max-width:720px) {
  section { padding:64px 0; } .hero { padding:64px 0; }
  .svc-grid,.why-grid,.review-grid,.repair-grid { grid-template-columns:1fr; } .ph-grid { grid-template-columns:repeat(2,1fr); }
  .repair-text h2 { text-align:center; } .band { padding:84px 0; }
  .row { flex-direction:column; gap:0; } .cta-link { display:block; margin:14px 0 0; }
  .sticky-cta { display:flex; } body { padding-bottom:54px; }
}
