
:root{
  --bg:#f5f5f3;
  --surface:#ffffff;
  --text:#111111;
  --muted:#666666;
  --line:#dddddd;
  --accent:#a61f12;
  --accent-dark:#7b140c;
  --gold:#c9a227;
  --dark:#111214;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,92%);margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(8px);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}
.brand img{
  height:64px;
  width:auto;
}
.nav{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}
.nav a{
  font-weight:700;
  color:#222;
}
.nav a:hover{color:var(--accent)}

.hero{
  position:relative;
  background:
    linear-gradient(135deg, rgba(17,18,20,.92), rgba(17,18,20,.76)),
    radial-gradient(circle at top right, rgba(201,162,39,.16), transparent 35%),
    linear-gradient(120deg, #1b1d21, #0f1012);
  color:#fff;
  overflow:hidden;
}
.overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:36px 36px;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.3fr .8fr;
  gap:42px;
  padding:90px 0 80px;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold);
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  font-size:clamp(2.3rem, 5vw, 4.5rem);
  line-height:1.06;
  margin:0 0 18px;
  max-width:780px;
}
.hero p{
  color:rgba(255,255,255,.88);
  font-size:1.08rem;
  max-width:720px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:26px 0 26px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
  border:2px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
}
.btn-primary:hover{background:var(--accent-dark)}
.btn-secondary{
  border-color:rgba(255,255,255,.3);
  color:#fff;
}
.btn-secondary:hover{
  background:rgba(255,255,255,.08);
}
.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.hero-points li{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,.86);
}
.hero-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}
.hero-card{
  display:flex;
  align-items:center;
  justify-content:center;
}
.stat-card{
  width:100%;
  padding:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
}
.stat-card h3{
  margin:0 0 18px;
  font-size:1.4rem;
}
.service-mini-list{
  display:grid;
  gap:12px;
}
.service-mini-list span{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.09);
  color:#fff;
  font-weight:700;
}

.trust-strip{
  background:#fff;
  border-bottom:1px solid var(--line);
  border-top:1px solid var(--line);
}
.trust-items{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  padding:18px 0;
  text-align:center;
  font-weight:800;
  color:#2b2b2b;
}

.section{
  padding:78px 0;
}
.section-dark{
  background:var(--dark);
  color:#fff;
}
.section-heading{
  max-width:760px;
  margin-bottom:28px;
}
.section-heading h2{
  margin:0 0 10px;
  font-size:clamp(1.9rem,3vw,3rem);
  line-height:1.15;
}
.section-heading p{
  margin:0;
  color:var(--muted);
}
.section-dark .section-heading p{color:rgba(255,255,255,.75)}
.cards{
  display:grid;
  gap:22px;
}
.services-grid{
  grid-template-columns:repeat(3,1fr);
}
.three-up{
  grid-template-columns:repeat(3,1fr);
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.card h3{
  margin:0 0 10px;
  font-size:1.25rem;
}
.card p{
  margin:0;
  color:var(--muted);
}
.wide-note{
  margin-top:20px;
  padding:18px 20px;
  background:#fff7e5;
  border:1px solid #f0d387;
  border-radius:16px;
  font-weight:700;
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.about-grid h2{
  margin:0 0 14px;
  font-size:clamp(1.9rem,3vw,3rem);
  line-height:1.15;
}
.about-grid p{
  color:rgba(255,255,255,.82);
}
.about-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:24px;
}
.about-box h3{
  margin-top:0;
}
.about-box ul{
  margin:0;
  padding-left:18px;
}
.about-box li{
  margin-bottom:10px;
  color:rgba(255,255,255,.83);
}

.cta-band{
  background:linear-gradient(135deg, var(--accent-dark), var(--accent));
  color:#fff;
}
.cta-band-inner{
  padding:42px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-band h2{
  margin:0 0 8px;
  font-size:clamp(1.8rem,3vw,2.6rem);
}
.cta-band p{
  margin:0;
  color:rgba(255,255,255,.9);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
}
.contact-card h3{
  margin-top:0;
}
.contact-card a{
  color:var(--accent);
  font-weight:700;
  word-break:break-word;
}

.footer{
  background:#0f1012;
  color:#fff;
  padding:28px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#fff;
  font-weight:700;
}

@media (max-width: 980px){
  .hero-grid,
  .about-grid,
  .services-grid,
  .three-up,
  .contact-grid,
  .trust-items{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 720px){
  .nav{display:none}
  .brand img{height:52px}
  .hero-grid,
  .about-grid,
  .services-grid,
  .three-up,
  .contact-grid,
  .trust-items,
  .cta-band-inner,
  .footer-inner{
    grid-template-columns:1fr;
    display:grid;
  }
  .hero-grid{padding:70px 0 60px}
  .section{padding:60px 0}
  .hero-actions{flex-direction:column; align-items:stretch}
  .btn{width:100%}
}
