:root{
  --navy:#0a0f19;
  --navy-2:#05070c;
  --ink:#0f172a;
  --muted:#475569;
  --gold:#d4af6a;
  --bg:#ffffff;
  --bg-soft:#f9fafb;
  --border:#e6e8ee;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--ink);
  background:#f5f6f8;
}

.container{
  max-width:1120px;
  margin:auto;
  padding:0 24px;
}

/* NAV */
.site-header{
  background:rgba(10,15,25,.9);
  position:sticky;
  top:0;
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}
.brand-name{ color:#fff; font-weight:600; }
.brand-mark{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#b8934a);
}
.nav-left{ display:flex; gap:10px; align-items:center; }
.nav-right a{
  color:#e5e7eb;
  text-decoration:none;
  margin-left:18px;
}
.nav-cta{
  border:1px solid var(--gold);
  padding:6px 14px;
  border-radius:20px;
}

/* HERO */
.hero{
  background:linear-gradient(180deg,var(--navy),var(--navy-2));
  color:#fff;
  padding:80px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:48px;
  align-items:center;
}
.logo{ max-width:520px; }
.eyebrow{
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  opacity:.7;
}
.hero-text{ max-width:520px; font-size:16px; line-height:1.6; }
.hero-actions{ margin:24px 0; display:flex; gap:12px; }

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.highlight{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  padding:12px;
  border-radius:12px;
}
.highlight span{ font-size:13px; color:#cbd5e1; }

/* BUTTONS */
.btn{
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  border:none;
}
.primary{
  background:linear-gradient(135deg,var(--gold),#b8934a);
  color:#111;
}
.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
}

/* SECTIONS */
.section{
  padding:64px 0;
  background:var(--bg);
}
.services{ background:var(--bg-soft); }
.section-title{
  text-align:center;
  color:var(--gold);
  font-size:36px;
  margin-bottom:32px;
}
.section-intro{
  text-align:center;
  color:var(--muted);
  margin-bottom:32px;
}

/* CARDS */
.cards{
  display:grid;
  gap:18px;
}
.cards.three{
  grid-template-columns:repeat(3,1fr);
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  text-align:center;
}
.card p{
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:32px;
}
.contact-info{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
}
.info-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:12px;
  border:1px solid #cbd5e1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid,
  .cards.three,
  .contact-grid{
    grid-template-columns:1fr;
  }
}