:root{
  --black:#080808;
  --dark:#111111;
  --panel:#181818;
  --gold:#d4af37;
  --gold-light:#f1cc5a;
  --white:#ffffff;
  --muted:#b9b9b9;
  --border:rgba(212,175,55,.45);
  --shadow:0 12px 30px rgba(0,0,0,.28);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#070707;
  border-bottom:2px solid var(--gold);
}

.nav-wrap{
  width:min(1200px,94%);
  margin:auto;
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
}

.logo{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid var(--gold);
  flex-shrink:0;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-text strong{
  color:var(--gold);
  font-size:1.35rem;
}

.brand-text span{
  color:#c7c7c7;
  font-size:.8rem;
  margin-top:5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
}

.nav-links a{
  display:block;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  transition:.2s ease;
}

.nav-links a:hover{
  color:var(--gold);
}

.menu-toggle{
  display:none;
  background:transparent;
  color:var(--gold);
  border:1px solid var(--gold);
  border-radius:9px;
  padding:7px 11px;
  font-size:1.35rem;
  cursor:pointer;
}

.hero{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px;
  background:
  radial-gradient(
    circle at 50% 10%,
    rgba(212,175,55,.11),
    transparent 35%
  ),
  #111;
}

.hero-content{
  width:min(900px,94%);
}

.eyebrow{
  color:var(--gold);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:12px;
}

.hero h1{
  color:var(--gold);
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:1.05;
  margin-bottom:22px;
}

.hero-copy{
  color:#e2e2e2;
  max-width:850px;
  margin:auto;
  font-size:1.12rem;
}

.hero-actions,
.contact-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 26px;
  border-radius:9px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-gold{
  background:var(--gold);
  color:#080808;
}

.btn-gold:hover{
  background:var(--gold-light);
}

.btn-outline{
  border-color:var(--gold);
  color:var(--gold);
  background:transparent;
}

.btn-outline:hover{
  background:var(--gold);
  color:#080808;
}

.trust-row{
  margin-top:28px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  color:#ddd;
  font-size:.94rem;
}

.section{
  padding:85px 0;
}

.section-alt,
.section-dark{
  background:var(--dark);
}

.section-heading{
  width:min(820px,92%);
  margin:0 auto 42px;
  text-align:center;
}

.section-heading h2{
  color:var(--gold);
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:12px;
}

.section-heading p:not(.eyebrow){
  color:var(--muted);
}
.card-grid{
  width:min(1180px,92%);
  margin:auto;
  display:grid;
  gap:22px;
}

.services-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.service-card,
.why-card{
  background:linear-gradient(180deg,#1b1b1b,#121212);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 22px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.service-card:hover,
.why-card:hover{
  transform:translateY(-5px);
  border-color:var(--gold);
}

.service-icon{
  font-size:2rem;
  margin-bottom:15px;
}

.service-card h3,
.why-card h3{
  color:var(--gold);
  margin-bottom:10px;
  font-size:1.1rem;
}

.service-card p,
.why-card p{
  color:var(--muted);
  font-size:.94rem;
}

.why-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.why-card span{
  display:inline-grid;
  place-items:center;
  width:50px;
  height:50px;
  margin-bottom:14px;
  border-radius:50%;
  background:rgba(212,175,55,.12);
  color:var(--gold);
  font-size:1.4rem;
}

.gallery-grid{
  width:min(1180px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.gallery-grid figure{
  margin:0;
  background:#151515;
  border:1px solid var(--border);
  border-radius:15px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.gallery-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center;
}

.gallery-grid figcaption{
  padding:14px 16px;
  color:var(--gold);
  font-weight:800;
  text-align:center;
  background:#151515;
}

.estimate-wrap{
  width:min(1080px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:55px;
}

.estimate-copy h2{
  color:var(--gold);
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:15px;
}

.estimate-copy p{
  color:var(--muted);
}

.mini-contact{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.mini-contact a{
  color:var(--gold);
  font-weight:800;
  text-decoration:none;
  font-size:1.1rem;
}

.mini-contact span{
  color:var(--muted);
}

.estimate-form{
  background:#0f0f0f;
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  box-shadow:var(--shadow);
}

.estimate-form label{
  display:block;
  color:#ddd;
  font-size:.92rem;
  font-weight:700;
  margin-bottom:16px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea{
  width:100%;
  margin-top:7px;
  padding:14px 15px;
  border:1px solid #333;
  border-radius:8px;
  background:#181818;
  color:#fff;
  font:inherit;
  outline:none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus{
  border-color:var(--gold);
}

.estimate-form textarea{
  resize:vertical;
}

.form-btn{
  width:100%;
  border:none;
  font-size:1rem;
}

.form-note{
  text-align:center;
  color:#777;
  font-size:.78rem;
  margin-top:12px;
}

.contact-card{
  width:min(900px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#151515;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
}

.contact-card > div{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:7px;
  text-align:center;
}

.contact-card > div + div{
  border-left:1px solid #303030;
}

.contact-card strong{
  color:var(--gold);
}

.contact-card a{
  text-decoration:none;
  color:#fff;
}

footer{
  background:#050505;
  border-top:2px solid var(--gold);
  padding:40px 20px 90px;
  text-align:center;
  color:#aaa;
}

.footer-logo{
  width:75px;
  height:75px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid var(--gold);
  margin:0 auto 15px;
}

footer p + p{
  margin-top:5px;
  font-size:.88rem;
}
.floating-button{
  position:fixed;
  right:22px;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:1.4rem;
  z-index:1200;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.floating-call{
  bottom:92px;
  background:var(--gold);
  color:#080808;
}

.floating-text{
  bottom:24px;
  background:#27c95b;
  color:#fff;
}

@media(max-width:1000px){

  .services-grid,
  .why-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .estimate-wrap{
    grid-template-columns:1fr;
    gap:35px;
  }

  .nav-links{
    gap:16px;
  }

}

@media(max-width:760px){

  .site-header{
    position:sticky;
    top:0;
  }

  .nav-wrap{
    width:100%;
    min-height:74px;
    padding:0 16px;
  }

  .logo{
    width:52px;
    height:52px;
  }

  .brand{
    gap:10px;
  }

  .brand-text strong{
    font-size:1rem;
    white-space:nowrap;
  }

  .brand-text span{
    display:none;
  }

  .menu-toggle{
    display:block;
    flex-shrink:0;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    width:100%;
    padding:10px 18px 16px;
    margin:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#070707;
    border-top:1px solid rgba(212,175,55,.3);
    border-bottom:2px solid var(--gold);
    box-shadow:0 12px 25px rgba(0,0,0,.45);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a{
    width:100%;
    padding:11px 4px;
    font-size:.95rem;
    border-bottom:1px solid #222;
  }

  .nav-links li:last-child a{
    border-bottom:none;
  }

  .hero{
    min-height:auto;
    padding:70px 18px 55px;
  }

  .hero-content{
    width:100%;
  }

  .hero h1{
    font-size:2.25rem;
    line-height:1.08;
    margin-bottom:18px;
  }

  .hero-copy{
    font-size:.96rem;
    line-height:1.7;
  }

  .hero-actions{
    margin-top:24px;
    gap:10px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .trust-row{
    gap:8px 14px;
    margin-top:22px;
    font-size:.84rem;
  }

  .section{
    padding:58px 0;
  }

  .section-heading{
    width:88%;
    margin-bottom:28px;
  }

  .section-heading h2{
    font-size:2rem;
  }

  .section-heading p:not(.eyebrow){
    font-size:.94rem;
  }

  .services-grid,
  .why-grid,
  .gallery-grid,
  .contact-card{
    grid-template-columns:1fr;
  }

  .card-grid{
    width:88%;
    gap:14px;
  }

  .service-card,
  .why-card{
    padding:24px 18px;
  }

  .service-card:hover,
  .why-card:hover{
    transform:none;
  }

  .gallery-grid{
    width:88%;
    gap:16px;
  }

  .gallery-grid img{
    height:210px;
  }

  .estimate-wrap{
    width:88%;
    gap:28px;
  }

  .estimate-copy{
    text-align:left;
  }

  .estimate-copy h2{
    font-size:2rem;
  }

  .mini-contact{
    margin-top:20px;
  }

  .estimate-form{
    padding:20px 18px;
  }

  .estimate-form input,
  .estimate-form select,
  .estimate-form textarea{
    font-size:16px;
  }

  .contact-card{
    width:88%;
  }

  .contact-card > div{
    padding:20px 16px;
  }

  .contact-card > div + div{
    border-left:none;
    border-top:1px solid #303030;
  }

  .contact-actions{
    width:88%;
    margin:24px auto 0;
    gap:10px;
  }

  .contact-actions .btn{
    width:100%;
  }

  footer{
    padding:34px 18px 95px;
  }

  .footer-logo{
    width:65px;
    height:65px;
  }

  .floating-button{
    right:14px;
    width:48px;
    height:48px;
    font-size:1.1rem;
  }

  .floating-call{
    bottom:76px;
  }

  .floating-text{
    bottom:18px;
  }

}

@media(max-width:430px){

  .nav-wrap{
    padding:0 12px;
  }

  .logo{
    width:48px;
    height:48px;
  }

  .brand-text strong{
    font-size:.93rem;
  }

  .menu-toggle{
    padding:6px 9px;
    font-size:1.2rem;
  }

  .hero{
    padding:60px 16px 48px;
  }

  .hero h1{
    font-size:2rem;
  }

  .section{
    padding:52px 0;
  }

  .gallery-grid img{
    height:200px;
  }

  .floating-button{
    width:44px;
    height:44px;
    right:10px;
  }

  .floating-call{
    bottom:68px;
  }

  .floating-text{
    bottom:16px;
  }

}