:root{
  --navy:#041024;
  --white:#ffffff;
  --beige:#f5e9db;
  --gold:#caa462;
  --muted:#9aa6b2;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial}
body{background:var(--white);color:#071427;line-height:1.5}

/* Header */
.site-header{background:linear-gradient(180deg, rgba(4,16,36,1) 0%, rgba(6,25,48,1) 100%);color:var(--white);position:sticky;top:0;z-index:50}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.nav{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:44px;height:44px;border-radius:6px;background:linear-gradient(135deg,var(--gold),var(--beige));display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--navy)}
.site-title{font-weight:700;font-size:1.05rem}
.nav-links{display:flex;gap:18px;align-items:center}
.nav-links a{color:var(--white);text-decoration:none;font-weight:600}
.cta{background:var(--gold);color:var(--navy);padding:10px 14px;border-radius:8px;font-weight:700;text-decoration:none}
.phone{font-weight:700}

/* Mobile nav */
.mobile-toggle{display:none;background:transparent;border:0;color:var(--white);font-size:1.25rem}

/* Hero */
.hero{padding:80px 0;color:var(--white);border-bottom:6px solid rgba(10,18,34,0.06);background-size:cover;background-position:center;background-repeat:no-repeat;background-image:linear-gradient(rgba(4,16,36,0.55), rgba(6,25,48,0.55)), url('/assets/images/hero-1600.jpg');min-height:420px}
.hero-inner{display:grid;grid-template-columns:1fr 420px;gap:32px;align-items:center}
.hero-photo{display:none}

/* Swap to smaller background on narrow screens */
@media(max-width:1000px){
  .hero{background-image:linear-gradient(rgba(4,16,36,0.6), rgba(6,25,48,0.6)), url('/assets/images/hero-800.jpg');min-height:520px;padding:60px 0}
}
.hero h1{font-size:2rem;margin:0 0 12px}
.hero p{color:rgba(255,255,255,0.9);margin:0 0 20px}
.hero .buttons{display:flex;gap:12px}

/* Trust badges */
.trust{display:flex;gap:16px;flex-wrap:wrap;padding:20px 0;color:var(--navy)}
.badge{background:var(--white);padding:12px 14px;border-radius:8px;box-shadow:0 6px 20px rgba(2,6,23,0.08);font-weight:700}

/* Services grid */
.services{padding:48px 0}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.service-card{background:linear-gradient(180deg,var(--white),#fbfbfb);padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(10,20,37,0.05)}
.service-card h4{margin:8px 0 6px}
.service-card p{margin:0;color:var(--muted);font-size:.95rem}

/* Sections */
.section{padding:44px 0}
.section h2{font-size:1.4rem;margin-bottom:14px}
.two-col{display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:start}

/* Projects gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.project{height:160px;border-radius:8px;background:#e6e6e6;overflow:hidden}
.gallery .project img{width:100%;height:100%;object-fit:cover;display:block}
.featured-gallery-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
}
.gallery.featured-scroll{
  display:flex;
  overflow-x:auto;
  gap:12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:6px;
}
.gallery.featured-scroll .project{
  flex:0 0 clamp(220px,30vw,320px);
  height:220px;
  scroll-snap-align:start;
}
.gallery-arrow{
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:var(--navy);
  color:var(--white);
  font-size:1.6rem;
  line-height:1;
  cursor:pointer;
}
.gallery-arrow:hover{background:#0a1e3f}

/* Testimonials */
.testimonials{display:flex;flex-direction:column;gap:12px}
.testimonial{background:#fff;padding:16px;border-radius:10px;box-shadow:0 6px 18px rgba(10,20,37,0.04)}

/* Footer */
.site-footer{background:#041024;color:var(--white);padding:28px 0;margin-top:40px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}

/* Contact form */
.contact-form{background:#fff;padding:18px;border-radius:10px;box-shadow:0 10px 30px rgba(4,8,18,0.06)}
.form-row{display:flex;gap:12px}
.form-row input,.form-row textarea{flex:1;padding:10px;border:1px solid #e6e9ee;border-radius:8px}
.btn-primary{background:var(--navy);color:var(--white);padding:12px 16px;border-radius:8px;border:0;font-weight:700}

/* Utilities */
.muted{color:var(--muted)}
.small{font-size:.9rem}

/* Responsive */
@media(max-width:1000px){
  .hero-inner,.two-col{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .gallery-arrow{width:36px;height:36px}
}
@media(max-width:700px){
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .services-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .featured-gallery-shell{gap:8px}
  .gallery-arrow{width:32px;height:32px;font-size:1.25rem}
}
