:root {
  --navy: #0f2138;
  --navy-light: #1b3a5c;
  --gold: #c9a35a;
  --gold-dark: #a9803f;
  --ink: #1f2733;
  --muted: #5b6675;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --border: #e2e6ea;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid var(--gold);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 156px;
  width: auto;
  display: block;
}
.brand-name {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-tagline {
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.compass-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
nav.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
nav.main-nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.header-phone {
  color: var(--gold-dark);
  font-weight: 700;
  font-family: "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}
.hero .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  max-width: 780px;
  margin: 0 auto 22px;
}
.hero p.lead {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #cdd8e4;
  font-size: 1.1rem;
}
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.btn:hover { background: #d9b673; color: var(--navy); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 3px;
  font-size: 0.95rem;
}
.btn-outline:hover { background: rgba(201,163,90,0.15); color: #fff; }

/* Sections */
section { padding: 64px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.section-head .eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  nav.main-nav { gap: 16px; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 30px 26px;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-row .num {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold-dark);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.stat-row .label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}
@media (max-width: 860px) { .stat-row { grid-template-columns: 1fr; } }

/* Bios */
.bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.bio:last-child { border-bottom: none; }
.bio-photo {
  width: 240px; height: 240px;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio h3 { margin-bottom: 2px; }
.bio .role {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.bio .credentials {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 14px;
}
@media (max-width: 640px) {
  .bio { grid-template-columns: 1fr; }
  .bio-photo { width: 180px; height: 180px; }
}

/* Clients */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}
.client-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 14px;
  text-align: center;
  color: var(--navy);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.client-tile img { max-height: 84px; max-width: 100%; margin: 0 auto; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { margin-bottom: 18px; }
.contact-detail .k {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
form.contact-form label {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #b9c4d1;
  padding: 46px 0 26px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
footer.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
footer.site-footer a { color: #b9c4d1; }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer .social a { margin-right: 14px; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid #2a3f57;
  padding-top: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: #8fa0b3;
}
