/* ============================
   styles.css
   ============================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #1f3a5f;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header { border-bottom: 1px solid var(--border); background: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 34px; }
.brand-name { font-weight: 600; }
.brand-tagline { font-size: 0.9rem; color: var(--muted); }

.site-nav a { margin-left: 20px; text-decoration: none; color: var(--muted); }
.site-nav a:hover { color: var(--text); }

.hero { position: relative; padding: 96px 0 72px; overflow: hidden; }
.hero-watermark { position: absolute; top: -40px; right: -60px; width: min(520px, 65vw); opacity: 0.04; filter: saturate(0); }

.hero-inner h1 { max-width: 720px; font-size: 2.4rem; font-weight: 600; }
.hero-subtext { max-width: 720px; font-size: 1.05rem; color: var(--muted); margin-top: 18px; }

.principal-block { max-width: 720px; margin-top: 26px; border-left: 3px solid var(--border); padding-left: 18px; }
.principal-title { font-weight: 600; margin-bottom: 6px; }
.principal-cred { font-size: 0.9rem; color: var(--muted); margin-top: 6px; }

.hero-badges { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span { border: 1px solid var(--border); padding: 6px 12px; border-radius: 4px; font-size: 0.85rem; color: var(--muted); }

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: 1.6rem; font-weight: 600; margin-bottom: 28px; }

.focus-list { max-width: 720px; padding-left: 20px; }
.focus-list li { margin-bottom: 10px; }

.table-wrapper { overflow-x: auto; }
.capabilities-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.capabilities-table th, .capabilities-table td { border: 1px solid var(--border); padding: 14px; vertical-align: top; }
.capabilities-table th { background: #fafafa; font-weight: 600; }
.matrix-note { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }

.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.work-card { border: 1px solid var(--border); padding: 22px; background: #fff; }
.work-card h3 { margin-top: 0; font-size: 1.05rem; }

.deliverables-list { max-width: 720px; padding-left: 20px; }
.deliverables-list li { margin-bottom: 10px; }

.markets { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; color: var(--muted); }

.engagement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 48px; }
.engagement-grid ul { padding-left: 20px; }
.engagement-grid li { margin-bottom: 8px; }

.leadership-meta { color: var(--muted); }
.leadership-note { font-size: 0.9rem; color: var(--muted); }

.contact a { color: var(--accent); text-decoration: none; }
.contact-note { margin-top: 14px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--border); padding: 24px 0; font-size: 0.85rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
