/* ===== VECTOR LEGAL ADVISORY — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&family=Cormorant+Garamond:wght@400;600;700&family=Libre+Baskerville:wght@400;700&family=Spectral:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --gold: #B8922A;
  --gold-light: #D4A94A;
  --cream: #FAF7F2;
  --white: #ffffff;
}

body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: #0D1B2A; line-height: 1.6; }

/* NAV */
.vla-nav {
  background: var(--navy);
  padding: 0.9rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.vla-logo { text-decoration: none; }
.vla-logo-name { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; letter-spacing: 0.04em; display: block; }
.vla-logo-slogan { color: rgba(255,255,255,0.4); font-size: 0.65rem; display: block; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1px; }
.vla-nav-links { display: flex; gap: 1.5rem; align-items: center; }
.vla-nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.04em; transition: color 0.2s; }
.vla-nav-links a:hover { color: var(--gold-light); }
.vla-nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 500; padding: 0.45rem 1.1rem; border-radius: 2px; text-transform: uppercase; font-size: 0.75rem !important; letter-spacing: 0.08em !important; }
.vla-nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* FOOTER */
.vla-footer {
  background: #060E16;
  padding: 3rem 2.5rem 2rem;
}
.vla-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vla-footer-brand .name { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.05rem; margin-bottom: 0.5rem; }
.vla-footer-brand .slogan { font-style: italic; color: rgba(255,255,255,0.4); font-size: 0.78rem; letter-spacing: 0.06em; margin-bottom: 1rem; }
.vla-footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.vla-footer-col h4 { color: var(--gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; font-weight: 500; }
.vla-footer-col a, .vla-footer-col p { display: block; color: rgba(255,255,255,0.45); font-size: 0.8rem; text-decoration: none; margin-bottom: 0.5rem; line-height: 1.6; }
.vla-footer-col a:hover { color: var(--gold-light); }
.vla-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.vla-footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

@media (max-width: 640px) {
  .vla-nav-links { display: none; }
  .vla-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
