:root{
  --black:#050505;
  --charcoal:#111111;
  --gold:#d7a82f;
  --gold-light:#f1c75b;
  --white:#ffffff;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.10);
  --radius:24px;
  --max:1140px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
  radial-gradient(circle at top right, rgba(215,168,47,.10), transparent 30%),
  linear-gradient(135deg, #050505, #111111);
  color:var(--white);
  font-family:Arial, Helvetica, sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(5,5,5,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo-mark{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(145deg, #d7a82f, #f1c75b);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#050505;
  font-weight:900;
  font-size:22px;
}

.logo-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:4px;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-btn{
  min-width:140px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.2s ease;
  border:1px solid rgba(255,255,255,.10);
}

.gold-btn{
  background:var(--gold);
  color:#050505;
}

.gold-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(215,168,47,.25);
}

.dark-btn{
  background:rgba(255,255,255,.05);
}

.dark-btn:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.hero{
  padding:90px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:center;
}

.eyebrow{
  color:var(--gold);
  letter-spacing:4px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

h1{
  font-size:clamp(46px, 7vw, 82px);
  line-height:.95;
  letter-spacing:-3px;
  margin:0 0 24px;
}

.intro{
  font-size:20px;
  line-height:1.7;
  color:var(--muted);
  max-width:650px;
  margin-bottom:34px;
}

.actions,
.quote-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  min-width:150px;
  height:54px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.2s ease;
}

.primary-btn{
  background:var(--gold);
  color:#050505;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(215,168,47,.25);
}

.secondary-btn{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.secondary-btn:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.hero-card{
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:34px;
}

.hero-card h2{
  margin-top:0;
  margin-bottom:28px;
  color:var(--gold);
  letter-spacing:3px;
  font-size:16px;
}

.contact-row{
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-row:last-child{
  border-bottom:none;
}

.contact-row span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
  font-size:13px;
  letter-spacing:2px;
}

.contact-row a,
.contact-row p{
  margin:0;
  font-size:24px;
  font-weight:800;
}

.services{
  padding:80px 0;
}

.services h2,
.quote h2{
  font-size:clamp(34px, 5vw, 56px);
  margin:0 0 34px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.service-grid article{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:28px;
}

.service-grid h3{
  margin-top:0;
  color:var(--gold-light);
}

.service-grid p{
  color:var(--muted);
  line-height:1.6;
}

.quote{
  padding:70px 0;
  background:rgba(215,168,47,.05);
  border-top:1px solid rgba(215,168,47,.15);
  border-bottom:1px solid rgba(215,168,47,.15);
}

.quote-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.quote p{
  color:var(--muted);
  font-size:18px;
}

.footer{
  padding:34px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer-left p{
  margin:0 0 8px;
  color:var(--muted);
}

.footer-right{
  text-align:right;
}

.footer-right a{
  display:block;
  margin-bottom:8px;
  color:var(--gold-light);
  font-weight:700;
}

@media (max-width:860px){

  .nav{
    flex-direction:column;
    gap:18px;
    padding:18px 0;
  }

  .nav-actions{
    width:100%;
  }

  .nav-btn{
    flex:1;
  }

  .hero{
    padding:60px 0 46px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .quote-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .actions,
  .quote-actions{
    flex-direction:column;
    width:100%;
  }

  .btn{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
  }

  .footer-right{
    text-align:left;
  }

  .contact-row a,
  .contact-row p{
    font-size:20px;
  }

  .logo-text{
    font-size:15px;
    letter-spacing:3px;
  }

}