
:root{
  --bg:#0b2740;
  --bg-soft:#0f3352;
  --text:#0d1b2a;
  --muted:#6c7a89;
  --white:#fff;
  --accent:#153a6a;
  --brand:#0d2a4a;
  --gold:#caa656;
  --radius:18px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;color:#0d1b2a;background:#f4f7fb;line-height:1.5}
a{color:var(--brand);text-decoration:none}
.topbar{display:flex;justify-content:space-between;align-items:center;padding:10px 18px;background:#fff;border-bottom:1px solid #e6ecf3;position:sticky;top:0;z-index:50}
.brand{display:flex;gap:10px;align-items:center}
.brand-logo{width:44px;height:44px;border-radius:10px;object-fit:cover}
.brand-meta small{display:block;color:var(--muted)}
.lang-switch .lang{border:1px solid #d7e1ee;background:#fff;padding:6px 10px;border-radius:10px;margin-left:6px;cursor:pointer}
.lang-switch .lang.active{background:#0e2b4b;color:#fff;border-color:#0e2b4b}

.hero{display:grid;grid-template-columns:1.2fr 0.8fr;gap:30px;align-items:center;background:linear-gradient(180deg,#0c2844,#0f3557);color:#fff;padding:48px 24px}
.hero h1{font-size:44px;line-height:1.15;margin:0 0 12px}
.hero .sub{opacity:.9;margin:0 0 18px}
.hero .cta-row{display:flex;flex-wrap:wrap;gap:12px}
.hero .btn{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.25)}
.hero .btn:hover{background:rgba(255,255,255,.18)}
.hero .btn.btn-primary{background:#1a64b7;border-color:#1a64b7}
.hero .hero-media video,.hero .hero-media img{width:100%;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,.35)}

main{max-width:1100px;margin:-32px auto 40px;padding:0 16px}
.card{background:#fff;border-radius:var(--radius);padding:22px;margin-top:18px;box-shadow:0 8px 30px rgba(7,27,51,.08)}
.card.inner{background:#f9fbff}
h2{margin:6px 0 12px;font-size:26px}
h3{margin:0 0 10px}

.bullets{margin:8px 0 14px 16px}
.bullets li{margin:6px 0}

.btn{display:inline-block;padding:12px 18px;border-radius:14px;border:1px solid #cfd8e3;background:#fff}
.btn-primary{background:#0e4da6;color:#fff;border-color:#0e4da6}
.btn.ghost{background:#eef4ff;border-color:#d7e2f3;color:#0e4da6}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px}
.gallery img{width:100%;aspect-ratio:16/9;height:auto;object-fit:cover;border-radius:16px;box-shadow:0 4px 16px rgba(0,0,0,.08)}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}

.team .people{display:flex;gap:18px;flex-wrap:wrap;align-items:flex-start}
.team .person{flex:1 1 360px;max-width:420px;background:#f9fbff;border:1px solid #e8eef7;border-radius:18px;padding:14px}
.team .person.lower{margin-top:30px}
.team .person img{width:100%;height:auto;max-height:420px;object-fit:contain;border-radius:14px;background:#fff}
.team .link{display:inline-block;margin-top:6px}

.lead-form{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.lead-form label{display:flex;flex-direction:column;gap:6px}
.lead-form input,.lead-form select{padding:12px;border:1px solid #d5e0ee;border-radius:12px}
.lead-form .btn{grid-column:1 / -1;justify-self:start}

.footer{max-width:1100px;margin:20px auto 40px;padding:0 16px;color:#44556a}
.footer .links{display:flex;gap:16px;flex-wrap:wrap}
.footer .copy{margin-top:8px}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr;gap:16px}
  .lead-form{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .gallery{grid-template-columns:1fr}
  .hero h1{font-size:32px}
}


/* === 2-per-row bigger cards for property galleries === */
.gallery.grid2{grid-template-columns:repeat(2,1fr)}
.gallery.grid2 img{}

@media(max-width:640px){.gallery.grid2{grid-template-columns:1fr}}
