/* MHR Advisory Group — Modern Minimal, business-professional */
:root {
  --bg: #ffffff;
  --ink: #14172b;
  --muted: #6b6b78;
  --line: #e6e6ea;
  --accent: #1E2761;       /* deep navy */
  --accent-2: #c9a45a;     /* muted gold */
  --accent-soft: #f4f6fb;
  --max: 1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

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

/* ---------- Header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 17px;
  color: var(--ink);
  text-transform: uppercase;
}
.brand span { color: var(--accent); }
nav.primary a {
  color: var(--ink);
  margin-left: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav.primary a:hover { color: var(--accent); text-decoration: none; }
nav.primary a.active { color: var(--accent); }
@media (max-width: 720px) {
  nav.primary a { margin-left: 14px; font-size: 13px; }
  .brand { font-size: 14px; }
}

/* ---------- Hero (text) ---------- */
.hero {
  padding: 96px 0 56px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 880px;
}
.hero .lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

/* ---------- Hero with image (split) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 56px;
}
.hero-split .hero-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(20,23,43,0.35);
  aspect-ratio: 4/5;
}
.hero-split .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30,39,97,0.18));
}
@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; padding: 64px 0 40px; }
}

/* ---------- Hero banner image ---------- */
.banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--accent);
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.banner .banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 0 24px;
}
.banner .banner-text-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.banner h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.banner .eyebrow {
  color: #c9d3f2;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #14194a; text-decoration: none; }
.btn-secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
  margin-left: 12px;
}
.btn-secondary:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
section.no-border { border-top: none; }
section h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 760px;
}
section .section-lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
  margin: 0 0 48px;
}
section.accent-bg { background: var(--accent-soft); border-top: none; }

/* ---------- Grid / cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 {
  font-size: 19px;
  margin: 0 0 12px;
  font-weight: 600;
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}
.card .num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.two-col h2 { margin-bottom: 24px; }
.two-col p { color: var(--muted); margin-top: 0; }

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 48px 0;
}
.stat .n {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.stat .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Engagements (rich) ---------- */
.eng-group { margin-bottom: 56px; }
.eng-group h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.eng-group .desc {
  color: var(--muted);
  margin: 8px 0 28px;
  max-width: 720px;
}
.eng-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 32px;
}
.eng-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  display: flex;
  flex-direction: column;
}
.eng-list li .name {
  font-weight: 600;
  color: var(--ink);
}
.eng-list li .role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* simple plain list (used on home) */
.engagements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 32px;
}
.engagements li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
}

/* ---------- About: portrait + bio ---------- */
.bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .bio { grid-template-columns: 1fr; gap: 28px; }
}
.bio .portrait {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(20,23,43,0.35);
  background: var(--accent-soft);
  aspect-ratio: 1/1;
  max-width: 360px;
}
.bio .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio h2 { margin-top: 0; }

/* ---------- Contact form ---------- */
form.contact {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
form.contact label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}
form.contact input,
form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
form.contact input:focus,
form.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
}
form.contact textarea { min-height: 140px; resize: vertical; }

.contact-info {
  background: var(--accent-soft);
  padding: 32px;
  border-radius: 4px;
  border-left: 3px solid var(--accent);
}
.contact-info h3 { margin-top: 0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.contact-info p { margin: 8px 0; color: var(--ink); }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* image utility */
.framed {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 16px 40px -20px rgba(20,23,43,0.25);
}
.framed img { width: 100%; height: 100%; object-fit: cover; }
