
:root{
  --bg:#0b0f19;
  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --accent:#d9c07e; /* classy gold */
  --shadow:0 18px 55px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(217,192,126,.14), transparent 55%),
    radial-gradient(900px 700px at 85% 65%, rgba(93,164,214,.12), transparent 55%),
    var(--bg);
}

a{color:inherit}
.wrap{max-width:1100px;margin:0 auto;padding:0 18px}

.top{
  position:sticky;top:0;z-index:30;
  border-bottom:1px solid var(--line);
  background: rgba(11,15,25,.70);
  backdrop-filter: blur(10px);
}
.topbar{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:14px 0}
.brand{display:flex;gap:10px;align-items:center;text-decoration:none}
.mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(217,192,126,.28), rgba(255,255,255,.05));
  font-weight:900;
}
.brandText{display:flex;flex-direction:column;line-height:1.1}
.brandName{font-weight:900}
.brandTag{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:10px;align-items:center}
.nav a{
  text-decoration:none;
  padding:9px 12px;border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
}
.nav a:hover{border-color:var(--line);color:var(--text);background:rgba(0,0,0,.18)}
.nav a.active{
  border-color: rgba(217,192,126,.35);
  color: var(--text);
  background: linear-gradient(135deg, rgba(217,192,126,.18), rgba(255,255,255,.04));
}

.hero{padding:44px 0 24px}
.heroCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  border-radius:22px;
  padding:26px;
  box-shadow: var(--shadow);
}
.kicker{color:var(--muted);font-size:13px}
.h1{font-size:40px;font-weight:950;margin:10px 0 8px;letter-spacing:-.4px}
.lead{color:var(--muted);max-width:60ch;line-height:1.6}
.heroActions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  background:rgba(0,0,0,.18);
}
.btn.primary{
  border-color: rgba(217,192,126,.35);
  background: linear-gradient(135deg, rgba(217,192,126,.22), rgba(255,255,255,.05));
  font-weight:800;
}
.btn:hover{filter:brightness(1.06)}

.section{padding:18px 0 34px}
.sectionTitle{font-weight:950;font-size:18px;margin:0 0 12px}
.grid{display:grid;gap:14px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid-3{grid-template-columns:1fr}}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  border-radius:18px;
  padding:14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.26);
}
.bizTop{display:flex;gap:10px;align-items:center}
.bizLogo{
  width:44px;height:44px;border-radius:14px;
  object-fit:cover;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
}
.bizName{font-weight:900}
.bizMeta{font-size:12px;color:var(--muted);margin-top:2px}
.bizDesc{color:var(--muted);font-size:13px;line-height:1.5;margin:10px 0 0}
.bizLink{margin-top:12px;display:inline-flex;font-weight:800;color:var(--text);text-decoration:none}
.bizLink:hover{text-decoration:underline}

.filters{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
  margin-bottom:12px;
}
.input, .select{
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
.input{min-width:280px}
.select{min-width:200px}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background: rgba(0,0,0,.14);
}
.footerInner{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap}
.footBrand{font-weight:950}
.footSub{color:var(--muted);font-size:12px}
.footer a{color:var(--muted);text-decoration:none}
.footer a:hover{color:var(--text)}

/* Contact form – keep original style, fix label placement */
.contactForm .input{ width:100%; }

.contactLabel{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:10px 0 6px;
}

.contactGrid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}

@media (max-width: 760px){
  .contactGrid2{ grid-template-columns: 1fr; }
}

.brandLogo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  padding:6px;
}

/* ===== FINAL HEADER OVERRIDE (forces 1-row header) ===== */
.topbar .wrap{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
  flex-wrap:nowrap !important;
}

/* Brand stays left */
.topbar .wrap .brand{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  text-decoration:none !important;
  flex: 0 0 auto !important;
}

/* Nav stays right on the SAME line */
.topbar .wrap .nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
  flex: 0 0 auto !important;
  white-space:nowrap !important;
}

/* Only stack on mobile */
@media (max-width: 720px){
  .topbar .wrap{
    flex-wrap:wrap !important;
    justify-content:center !important;
  }
  .topbar .wrap .nav{
    width:100% !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
  }
}
