
:root{
  --bg:#0f0f0f;
  --panel:#171717;
  --panel2:#1e1e1e;
  --text:#f1f1f1;
  --muted:#cfcfcf;
  --gold:#D4AF37;
  --gold2:#b99218;
  --border:rgba(212,175,55,.28);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Segoe UI,system-ui,-apple-system,Arial,sans-serif;
  background:radial-gradient(1200px 700px at 20% -10%, rgba(212,175,55,.10), transparent 55%),
             radial-gradient(900px 500px at 90% 10%, rgba(212,175,55,.08), transparent 55%),
             var(--bg);
  color:var(--text);
  line-height:1.7;
}
a{color:inherit}
header{
  position:sticky; top:0; z-index:999;
  background:rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1200px; margin:0 auto; padding:16px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.logo{
  color:var(--gold);
  font-weight:800;
  letter-spacing:.7px;
  text-transform:uppercase;
  font-size:16px;
}
nav{display:flex; flex-wrap:wrap; gap:10px;}
nav a{
  text-decoration:none;
  font-size:13px;
  letter-spacing:.5px;
  padding:10px 10px;
  border-radius:10px;
  color:rgba(255,255,255,.90);
  border:1px solid transparent;
}
nav a:hover{
  color:#fff;
  border-color:rgba(212,175,55,.25);
  background:rgba(255,255,255,.03);
}
.hero{
  padding:110px 18px 60px;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.85)),
    url("images/hero-asbestos-roof.jpg");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
}
.hero-inner{max-width:1200px; margin:0 auto;}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(0,0,0,.35);
  border-radius:999px;
  color:rgba(255,255,255,.92);
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.kicker .dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 18px rgba(212,175,55,.55);
}
h1{
  margin:18px 0 12px;
  font-size:44px;
  line-height:1.12;
  color:var(--gold);
  letter-spacing:-.5px;
}
.hero p{max-width:880px; margin:0 0 14px; color:rgba(255,255,255,.88);}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none;
  font-weight:800;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.45);
  background:linear-gradient(180deg, rgba(212,175,55,.95), rgba(212,175,55,.80));
  color:#141414;
  box-shadow:0 18px 35px rgba(0,0,0,.55);
}
.btn.secondary{
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.92);
  border-color:rgba(255,255,255,.16);
}
.btn:hover{transform:translateY(-1px)}
.section{max-width:1200px; margin:0 auto; padding:52px 18px;}
.grid{display:grid; gap:18px}
.grid.two{grid-template-columns:repeat(2, minmax(0,1fr));}
.grid.three{grid-template-columns:repeat(3, minmax(0,1fr));}
@media (max-width: 920px){
  h1{font-size:36px}
  .grid.two,.grid.three{grid-template-columns:1fr}
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(212,175,55,.18);
  border-radius:18px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.55);
}
.card h2{margin:0 0 10px; color:var(--gold); letter-spacing:.2px}
.card h3{margin:16px 0 8px; color:rgba(212,175,55,.95)}
.muted{color:rgba(255,255,255,.80)}
.badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:rgba(255,255,255,.86);
}
.list{padding-left:18px; margin:10px 0}
.callout{
  background:linear-gradient(180deg, rgba(212,175,55,.18), rgba(0,0,0,.18));
  border:1px solid rgba(212,175,55,.30);
}
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  margin-top:14px;
}
.gallery img{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  aspect-ratio: 4/3;
  object-fit: cover;
}
hr.sep{
  border:none; height:1px; margin:18px 0;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.35), transparent);
}
form label{display:block; font-weight:700; margin:14px 0 6px; color:rgba(255,255,255,.90);}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
small.helper{display:block; margin-top:8px; color:rgba(255,255,255,.72)}
footer{
  border-top:1px solid var(--border);
  padding:28px 18px;
  background:rgba(0,0,0,.78);
}
.footer-inner{max-width:1200px; margin:0 auto; color:rgba(255,255,255,.78); font-size:13px;}
.sticky-call{
  position:fixed;
  right:18px; bottom:18px;
  z-index:999;
  text-decoration:none;
  font-weight:900;
  padding:14px 18px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(212,175,55,.95), rgba(212,175,55,.82));
  color:#141414;
  border:1px solid rgba(212,175,55,.45);
  box-shadow:0 22px 50px rgba(0,0,0,.65);
}
