
/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#e5e7eb;background:#0b0f14;line-height:1.6}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
/* Header */
.header{position:sticky;top:0;z-index:50;background:#0b0f14;color:#fff;box-shadow:0 2px 10px rgba(0,0,0,.2)}
.header .inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:44px;width:auto}
.nav a{margin:0 12px;opacity:.9}
.nav a:hover{opacity:1}
.cta-btn{background:#c6a15b;color:#0b0f14;padding:10px 16px;border-radius:8px;font-weight:700}
/* Hero */
.hero{position:relative;min-height:68vh;display:flex;align-items:center;background:#0b0f14;color:#fff;overflow:hidden}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(70% 70% at 80% 10%,rgba(255,255,255,.12),transparent 60%),linear-gradient(180deg,rgba(0,0,0,.3),rgba(0,0,0,.65))}
.hero img.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:saturate(1.05) contrast(1.05);opacity:.6}
.hero .content{position:relative;z-index:2}
.hero h1{font-size:clamp(32px,6vw,60px);line-height:1.05;margin-bottom:18px;letter-spacing:.5px}
.hero p{font-size:clamp(16px,2.5vw,20px);max-width:760px;margin-bottom:24px;opacity:.95}
.hero .badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
.badge{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);padding:8px 12px;border-radius:999px;font-size:14px}
/* Sections */
.section{padding:70px 0}
.section h2{font-size:32px;margin-bottom:12px;color:#0b0f14}
.section p.lead{font-size:18px;color:#334155;margin-bottom:24px}
.grid{display:grid;gap:22px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{border:1px solid #e6e8ec;border-radius:14px;overflow:hidden;background:#fff}
.card .media{height:220px;overflow:hidden}
.card .media img{width:100%;height:100%;object-fit:cover}
.card .body{padding:18px}
.icon{font-weight:800;margin-right:8px}
/* USP strip */
.usp{background:#f8fafc;border-top:1px solid #eef2f7;border-bottom:1px solid #eef2f7}
.usp .items{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.usp .item{display:flex;gap:10px;align-items:flex-start;background:#fff;border:1px solid #eef2f7;border-radius:12px;padding:16px}
/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.gallery img{width:100%;height:260px;object-fit:cover;border-radius:10px;border:1px solid #e6e8ec;cursor:zoom-in}
video{width:100%;border-radius:12px;border:1px solid #e6e8ec}
/* Contact */
.contact{background:#0b0f14;color:#fff}
.contact h2{color:#fff}
.contact .card{background:#0e1a30;border:1px solid rgba(255,255,255,.1);color:#e5e7eb}
.contact a{color:#c6a15b}
.footer{padding:24px 0;color:#475569;background:#0b0f14;border-top:1px solid #111827}
.footer .container{color:#cbd5e1}
/* Responsive */
@media (max-width:900px){
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .usp .items{grid-template-columns:1fr 1fr}
}
@media (max-width:600px){
  .gallery{grid-template-columns:1fr}
  .nav{display:none}
}

/* Dark theme adjustments */
.section{background:#0b0f14}
.section h2{color:#f3f4f6}
.section p.lead{color:#cbd5e1}
.card{background:#0f1520;border:1px solid rgba(255,255,255,.08)}
.card .body{color:#e5e7eb}
.usp{background:#0b0f14;border-color:rgba(255,255,255,.06)}
.usp .item{background:#0f1520;border-color:rgba(255,255,255,.08);color:#e5e7eb}
.gallery img{border-color:rgba(255,255,255,.1)}
.hero{background:#000}
.cta-btn{background:#c6a15b;color:#0b0f14}
.cta-btn.submit{display:inline-block;margin-top:10px}
.contact{background:#000;color:#e5e7eb}
input, textarea{width:100%;padding:12px;border-radius:10px;border:1px solid rgba(255,255,255,.15);background:#0b0f14;color:#e5e7eb;margin-top:6px}
label{font-size:14px;color:#cbd5e1}
.contact-form .row{margin-bottom:12px}
.alt-contact{margin-top:10px;color:#cbd5e1}
.nav a{color:#e5e7eb}
.footer .container{color:#94a3b8}

.hero video.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.55)}
