
:root{
  --accent: #bGold; /* placeholder */
  --nav-bg: #071033;
  --card-bg: #ffffff;
  --muted: #6b7280;
}
*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  color:#111827;
  background: linear-gradient(180deg,#f8fafc, #eef2ff);
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 28px;
  background:#071033;
  color:#fff;
}
.brand{display:flex;gap:14px;align-items:center}
.brand h1{margin:0;font-size:20px;letter-spacing:0.6px}
.brand .tag{margin:0;font-size:12px;color:#d1d5db}
nav a{color:#d1d5db;margin-left:14px;text-decoration:none}
.hero{display:flex;gap:32px;padding:40px;align-items:center;flex-wrap:wrap}
.hero-inner{flex:1;min-width:320px}
.hero-gallery{flex:1;min-width:320px;display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.hero-gallery img{width:100%;height:180px;object-fit:cover;border-radius:8px;box-shadow:0 6px 18px rgba(2,6,23,0.12)}
.listings{padding:28px}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px}
.card{background:var(--card-bg);border-radius:10px;padding:12px;box-shadow:0 8px 24px rgba(2,6,23,0.08)}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.card h3{margin:10px 0 6px 0;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:14px}
.about, .contact{padding:28px;background:#fff;margin:18px;border-radius:10px}
.people-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.people-row img{width:180px;height:120px;object-fit:cover;border-radius:8px}
.site-footer{padding:18px 28px;text-align:center;color:#6b7280}
@media (max-width:720px){
  .hero{flex-direction:column}
  .hero-gallery{grid-template-columns:repeat(1,1fr)}
}


/* Gold accent styling */
.brand .logo-key { font-size:32px; }
.brand h1, .brand .tag { color: #f3d88b; }
.card .price { color: #a67c1a; font-weight:700; }
