:root {
  --navy: #304f9d;
  --navy-deep: #22396f;
  --orange: #ef6412;
  --orange-soft: #fff0e5;
  --teal: #16a9c5;
  --cream: #f7f7f5;
  --white: #fff;
  --ink: #172442;
  --muted: #5c6873;
  --line: #dce2e5;
  --shadow: 0 24px 60px rgba(36, 63, 131, .14);
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(220, 226, 229, .72);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.personal-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.brand-name {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-context {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #3a4855;
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
  transition: transform .2s, opacity .2s;
}

/* Shared typography */
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-light { color: #ffab72; }

h1 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(3.8rem, 8.4vw, 7.6rem);
  font-weight: 720;
  line-height: .94;
}

h1 span { color: var(--orange); }

h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  font-weight: 680;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(11, 31, 51, .14);
}

.text-link {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
  text-underline-offset: 5px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 96px;
  background: linear-gradient(110deg, var(--cream) 0 69%, var(--orange-soft) 69%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 430px;
  right: -205px;
  top: -170px;
  border: 1px solid rgba(239, 100, 18, .25);
}

.hero::after {
  width: 230px;
  height: 230px;
  right: 7%;
  bottom: -170px;
  border: 1px solid rgba(48, 79, 157, .16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 36px;
  color: #445361;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.hero-panel {
  position: relative;
  margin: 0;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 42px;
  width: 78px;
  height: 6px;
  background: var(--teal);
}

.panel-label {
  margin-bottom: 42px;
  color: #b6c6dd;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-statement {
  margin-bottom: 38px;
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
  font-weight: 620;
  line-height: 1.4;
  letter-spacing: -.025em;
}

.panel-detail {
  margin: 0;
  padding-top: 22px;
  color: #bfccdc;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .88rem;
}

/* Credibility strip */
.credibility-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credibility-grid > div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.credibility-grid > div:first-child { padding-left: 0; }
.credibility-grid > div:last-child { padding-right: 0; border-right: 0; }
.credibility-grid strong,
.credibility-grid span { display: block; }
.credibility-grid strong { margin-bottom: 4px; color: var(--navy); font-size: .9rem; }
.credibility-grid span { color: var(--muted); font-size: .78rem; line-height: 1.45; }

/* Sections */
.section { padding: 104px 0; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--navy-deep); }
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading.compact { margin-bottom: 40px; }
.section-intro { margin: 0 0 8px; color: var(--muted); font-size: 1.04rem; }
.section-intro-light { max-width: 560px; color: #c3cee0; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-card {
  min-height: 265px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.focus-card.featured { background: var(--cream); }
.focus-card p { margin-bottom: 0; color: var(--muted); }
.card-index { display: block; margin-bottom: 36px; color: var(--orange); font-size: .72rem; font-weight: 850; }

/* Approach */
.approach-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 120px);
}

.approach-list { border-top: 1px solid rgba(255,255,255,.18); }

.approach-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.approach-list article > span {
  color: var(--teal);
  font-size: .74rem;
  font-weight: 850;
}

.approach-list article p { margin-bottom: 0; color: #c3cee0; }

/* Experience */
.timeline { border-top: 1px solid var(--line); }

.timeline-item {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 50px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item.current { background: linear-gradient(90deg, var(--orange-soft), transparent 42%); }
.timeline-meta { display: flex; flex-direction: column; gap: 5px; }
.timeline-meta time { color: var(--navy); font-size: .85rem; font-weight: 800; }
.timeline-meta span { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 5px; font-size: 1.35rem; }
.timeline-item p { max-width: 780px; margin-bottom: 0; color: var(--muted); }
.timeline-item .role { margin-bottom: 10px; color: var(--ink); font-weight: 720; }
.experience-note { margin: 28px 0 0; color: var(--muted); font-size: .88rem; }

/* Writing */
.writing-layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.writing-layout > div:first-child p:last-child { max-width: 700px; color: var(--muted); }

.writing-card {
  padding: 38px;
  background: var(--white);
  border-top: 6px solid var(--orange);
  box-shadow: var(--shadow);
}

.writing-label {
  display: block;
  margin-bottom: 30px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.writing-card p { color: var(--muted); }

/* Relationship */
.relationship-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 100px);
}

.relationship-copy > p { color: var(--muted); }
.relationship-copy strong { color: var(--ink); }
.relationship-links { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; }
.relationship-links a { color: var(--navy); font-weight: 750; text-underline-offset: 5px; }

/* Profiles */
.public-profile-section { padding: 88px 0; color: var(--white); background: var(--navy); }
.public-profile-section h2 { color: var(--white); }
.public-profile-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); }
.public-profile-inner > div:first-child > p:last-child { color: #c3cee0; }

.profile-links { border-top: 1px solid rgba(255,255,255,.18); }
.profile-links a {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 19px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}
.profile-links a:hover strong { color: #ffab72; }
.profile-links span { color: #9fb0cb; font-size: .78rem; font-weight: 750; }
.profile-links strong { font-size: .96rem; transition: color .2s; }

/* Footer */
.site-footer { padding: 28px 0; background: #152749; color: #d7dfec; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 26px;
  align-items: center;
}

.footer-identity { display: flex; flex-direction: column; }
.footer-identity strong { color: var(--white); font-size: .84rem; }
.footer-identity span { color: #9fb0cb; font-size: .72rem; }
.footer-copyright { margin: 0; color: #aebbd0; font-size: .74rem; text-align: center; white-space: nowrap; }
.footer-right { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.footer-nav { display: flex; gap: 16px; }
.footer-nav a { color: #c8d2e1; font-size: .72rem; text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.social-links { display: flex; gap: 7px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #cbd5e4;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: color .2s, border-color .2s, background .2s;
}
.social-link:hover { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; }

/* 404 */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--cream);
}
.error-card { max-width: 680px; }
.error-card h1 { font-size: clamp(3rem, 7vw, 6rem); }
.error-card p { max-width: 560px; color: var(--muted); }

@media (max-width: 980px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .78rem; }
  .hero-grid,
  .approach-layout,
  .writing-layout,
  .relationship-layout,
  .public-profile-inner { grid-template-columns: 1fr; }
  .hero { background: var(--cream); }
  .hero-panel { max-width: 620px; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .section-intro { max-width: 760px; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid > div:nth-child(2) { border-right: 0; }
  .credibility-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .credibility-grid > div:first-child,
  .credibility-grid > div:nth-child(3) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-copyright { grid-row: 2; grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .nav-toggle { display: block; position: relative; z-index: 32; }
  .site-nav {
    position: fixed;
    z-index: 30;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    padding: 98px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    box-shadow: -18px 0 45px rgba(23, 36, 66, .18);
    transform: translateX(104%);
    transition: transform .22s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: .95rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open::before {
    content: "";
    position: fixed;
    z-index: 25;
    inset: 0;
    background: rgba(14, 28, 51, .42);
  }
  .hero { padding-top: 138px; }
  .timeline-item { grid-template-columns: 1fr; gap: 14px; }
  .timeline-meta { flex-direction: row; gap: 12px; align-items: center; }
  .footer-right { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(3.3rem, 17vw, 5.4rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero { padding: 132px 0 72px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-panel { padding: 34px 28px; }
  .hero-panel::before { left: 28px; }
  .section { padding: 76px 0; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 0; padding: 28px; }
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid > div { padding: 18px 0; border-right: 0; border-top: 1px solid var(--line); }
  .credibility-grid > div:first-child { border-top: 0; }
  .approach-list article { grid-template-columns: 42px 1fr; }
  .profile-links a { grid-template-columns: 92px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .footer-copyright { grid-row: auto; grid-column: auto; }
  .footer-right { justify-content: center; flex-direction: column; }
  .footer-identity { align-items: center; }
  .footer-nav { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
