
:root{
  --bg:#0b0b0b;
  --panel:#151515;
  --panel-soft:#1f1b17;
  --text:#f5f1e8;
  --muted:#c9bfae;
  --gold:#c9a24d;
  --gold-soft:#ead29a;
  --line:#302a22;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1160px,92%);margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,11,11,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  color:var(--gold);
  border-radius:50%;
  font-weight:800;
}
.brand strong{
  display:block;
  color:var(--gold-soft);
  letter-spacing:.04em;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.main-nav a{
  color:var(--muted);
  font-size:15px;
}
.main-nav a:hover{color:var(--gold-soft)}
.menu-toggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  color:var(--text);
  padding:8px 12px;
  border-radius:8px;
}
.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  background:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.72),rgba(0,0,0,.35));
}
.hero-content{
  position:relative;
  padding:110px 0;
}
.eyebrow,.mini-title{
  display:inline-block;
  color:var(--gold-soft);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}
.hero h1{
  max-width:820px;
  margin:0;
  font-size:clamp(42px,6vw,78px);
  line-height:1.02;
  letter-spacing:-.04em;
}
.hero p{
  max-width:680px;
  color:var(--muted);
  font-size:20px;
  margin:24px 0 0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 24px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn.primary{
  background:var(--gold);
  color:#111;
}
.btn.secondary{
  border-color:var(--gold);
  color:var(--gold-soft);
  background:rgba(0,0,0,.22);
}
.btn.full{width:100%}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  max-width:820px;
  margin-top:58px;
  border:1px solid rgba(201,162,77,.35);
  background:rgba(201,162,77,.18);
}
.hero-stats div{
  padding:20px;
  background:rgba(12,12,12,.72);
}
.hero-stats strong{
  display:block;
  color:var(--gold-soft);
}
.hero-stats span{
  color:var(--muted);
  font-size:14px;
}
.intro-strip{
  background:linear-gradient(135deg,#17120d,#211b12);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:44px 0;
}
.strip-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:42px;
  align-items:center;
}
.strip-grid h2{
  margin:0;
  font-size:30px;
  line-height:1.2;
}
.strip-grid p{
  color:var(--muted);
  margin:0;
}
.section{
  padding:96px 0;
}
.section h2{
  font-size:clamp(34px,4vw,54px);
  line-height:1.08;
  margin:0 0 18px;
  letter-spacing:-.03em;
}
.section p{color:var(--muted)}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.image-card{
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:var(--panel);
  box-shadow:0 24px 80px rgba(0,0,0,.3);
}
.image-card img{
  height:520px;
  width:100%;
  object-fit:cover;
}
.dark-panel{
  background:#111;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  max-width:780px;
  margin-bottom:42px;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  transition:.25s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,162,77,.7);
}
.service-card img{
  height:210px;
  width:100%;
  object-fit:cover;
}
.service-card div{
  padding:22px;
}
.service-card h3,.project-card h3,.step h3,.trust-grid h3{
  color:var(--gold-soft);
  margin:0 0 8px;
}
.project-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:22px;
}
.project-card{
  position:relative;
  min-height:350px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
}
.project-card.large{
  grid-row:span 2;
  min-height:724px;
}
.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.project-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.88),rgba(0,0,0,.12));
}
.project-card div{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
}
.muted{
  background:var(--panel-soft);
}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  background:rgba(0,0,0,.28);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.step span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  font-weight:800;
  margin-bottom:18px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.trust-grid div{
  border-top:1px solid var(--gold);
  padding-top:22px;
}
.testimonials{
  background:#101010;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
blockquote{
  margin:0;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  color:var(--text);
}
cite{
  display:block;
  color:var(--gold-soft);
  font-style:normal;
  margin-top:18px;
}
.contact-section{
  background:linear-gradient(135deg,#111,#1c1710);
}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
}
.contact-details{
  margin-top:28px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(0,0,0,.22);
}
.contact-form{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
}
.contact-form label{
  display:block;
  color:var(--gold-soft);
  font-weight:700;
  margin-bottom:16px;
}
.contact-form input,.contact-form textarea,.contact-form select{
  width:100%;
  margin-top:8px;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid #40372b;
  background:#0c0c0c;
  color:var(--text);
  font:inherit;
}
.form-status{
  min-height:24px;
  margin:14px 0 0;
  color:var(--gold-soft);
}
.site-footer{
  background:#050505;
  border-top:1px solid var(--line);
  padding:58px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr 1fr 1fr;
  gap:30px;
}
.site-footer a,.site-footer p{
  display:block;
  color:var(--muted);
  margin:8px 0;
}
.footer-bottom{
  margin-top:36px;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:1000;
  background:#25D366;
  color:#fff;
  font-weight:800;
  padding:14px 20px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}
@media(max-width:920px){
  .menu-toggle{display:block}
  .main-nav{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:78px;
    background:#0b0b0b;
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
  }
  .main-nav.open{display:flex}
  .hero{min-height:680px}
  .hero-stats,.strip-grid,.two-col,.card-grid,.project-grid,.steps,.trust-grid,.testimonial-grid,.contact-grid,.footer-grid{
    grid-template-columns:1fr;
  }
  .project-card.large{min-height:420px}
  .project-card{min-height:340px}
  .image-card img{height:380px}
}
@media(max-width:560px){
  .hero h1{font-size:38px}
  .hero p{font-size:17px}
  .section{padding:70px 0}
  .hero-stats div{padding:16px}
}
