:root {
  --navy: #0d1a35;
  --navy-soft: #1a2b4f;
  --cream: #f5f1ea;
  --cream-soft: #faf6ee;
  --gold: #b48b3d;
  --gold-dark: #8a6a2d;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e5dfd1;
  --max: 1100px;
  --radius: 2px;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3 {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}

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

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-soft);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.nav-logo:hover { color: var(--gold); }
.nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
.nav-links a {
  color: var(--cream); opacity: 0.85;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.15s, opacity 0.15s;
}
.nav-links a:hover { color: var(--gold); opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 20px;
}
.hero h1 {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 24px;
  color: var(--navy);
}
.hero h1 em { color: var(--gold-dark); font-style: italic; }
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.18s ease;
}
.btn-primary { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }

.hero-photo {
  position: relative;
  padding: 18px;
  background: var(--cream-soft);
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: 12px 12px 0 var(--navy);
  max-width: 340px;
  margin: 0 auto;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy);
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 28px;
}
.prose {
  font-size: 17px;
  color: var(--ink);
  max-width: 72ch;
  margin: 0 0 1em;
  line-height: 1.7;
}
.prose strong { color: var(--navy); }

/* ---------- Metrics ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 26, 53, 0.08);
}
.metric-number {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}
.metric-label {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Experience ---------- */
.role {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.role:first-of-type { border-top: none; padding-top: 8px; }
.role-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap; margin-bottom: 8px;
}
.role-title {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
}
.role-company {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 500;
}
.role-meta { color: var(--muted); font-weight: 400; }
.role-dates {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}
.role-points {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink);
}
.role-points li { margin-bottom: 8px; }
.role-points strong { color: var(--navy); }
.role-prior {
  margin-top: 36px;
  color: var(--muted);
  font-size: 15px;
}
.role-prior strong { color: var(--navy); }

/* ---------- Tags ---------- */
.tag-group { margin-bottom: 32px; }
.tag-group:last-child { margin-bottom: 0; }
.tag-heading {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin: 0 0 14px;
  font-weight: 600;
}
.tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tags li {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Client Experience ---------- */
.client-intro {
  font-size: 17px;
  color: var(--ink);
  max-width: 72ch;
  margin: 0 0 36px;
  line-height: 1.7;
}
.client-group { margin-bottom: 40px; }
.client-group:last-child { margin-bottom: 0; }
.client-group-heading {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.client-list { list-style: none; padding: 0; margin: 0; }
.client-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 4px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.client-item:last-child { border-bottom: none; }
.client-logo-wrap {
  grid-row: 1 / span 2;
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.client-logo {
  max-width: 64px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.client-item:hover .client-logo {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}
.client-name {
  grid-column: 2;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  align-self: center;
}
.client-meta {
  grid-column: 3;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
}
.client-desc {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 4px;
}

/* ---------- Partner grid (with logos) ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.partner-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.partner-grid li:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.partner-grid img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.partner-grid li:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}
.partner-grid span {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .client-item { grid-template-columns: 48px 1fr; }
  .client-logo-wrap { width: 48px; height: 40px; }
  .client-logo { max-width: 48px; max-height: 40px; }
  .client-meta { grid-column: 2; grid-row: 2; align-self: start; }
  .client-name { grid-column: 2; }
  .client-desc { grid-column: 2 / -1; grid-row: 3; }
}

/* ---------- Education ---------- */
.education { list-style: none; padding: 0; margin: 0; }
.education li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.education li:last-child { border-bottom: none; }
.education strong { color: var(--navy); }

/* ---------- Writing list ---------- */
.writing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.writing-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 32px 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.writing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 26, 53, 0.08);
  color: var(--ink);
}
.writing-date {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 10px;
}
.writing-title {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.25;
}
.writing-excerpt {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.writing-cta {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.writing-card:hover .writing-cta { color: var(--gold); }

/* ---------- Article page ---------- */
.article {
  padding: 56px 0 80px;
  background: var(--cream);
}
.article-container { max-width: 740px; }
.article-back {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.article-back:hover { color: var(--gold); }
.article-header {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 24px;
  margin-bottom: 36px;
}
.article-date {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 14px;
}
.article-title {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--navy);
  margin: 0;
}
.article-body {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.8;
}
.article-body p { margin: 0 0 1.2em; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body em { color: var(--navy); }
.article-h2 {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}
.article-kicker {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin-top: 40px;
}
.pull-quote {
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  background: #fff;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-style: normal;
  color: var(--gold-dark);
  font-family: "Figtree", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.article-footer p { margin: 0; color: var(--muted); font-size: 15px; }
.article-footer .article-back { margin-bottom: 0; }

/* ---------- Contact (dark) ---------- */
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-title-light { color: #fff; }
.section-title-light::after { background: var(--gold); }
.contact-inner { text-align: left; }
.contact-lede {
  color: var(--cream);
  opacity: 0.85;
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 36px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.contact-card {
  display: block;
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--cream);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.contact-card:hover {
  background: rgba(245, 241, 234, 0.1);
  border-color: var(--gold);
  color: #fff;
}
.contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-value {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
}

/* ---------- Footer ---------- */
.footer {
  background: #050d1f;
  color: rgba(245, 241, 234, 0.65);
  padding: 24px 0;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer p { margin: 0; }

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .hero { padding: 64px 0 48px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .hero-photo { order: -1; max-width: 260px; box-shadow: 8px 8px 0 var(--navy); }
  .nav-links { display: none; }
  .section { padding: 60px 0; }
  .role-head { flex-direction: column; gap: 4px; }
  .role-title { font-size: 22px; }
}
