@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root{
  --navy:#073d61;
  --deep:#062b47;
  --blue:#477a9b;
  --pale:#dbeaf3;
  --ink:#173342;
  --white:#fff;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  color:var(--ink);
  font-weight:300;
}
a{color:inherit}

.site-header{
  height:78px;
  background:#fff;
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  transition:transform .25s ease;
}
.site-header.nav-hidden{
  transform:translateY(-100%);
}
.nav-wrap{
  width:min(var(--max),86%);
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.wordmark{
  text-decoration:none;
  color:#063b61;
  font-size:18px;
  font-weight:500;
}
.site-header nav{display:flex;gap:32px}
.site-header nav a{
  text-decoration:none;
  color:#063b61;
  font-size:16px;
  font-weight:500;
}

/* HERO */
.hero{
  min-height:700px;
  background:url('../images/hero.jpg') center center/cover no-repeat;
  color:white;
}
.hero-inner{
  width:min(var(--max),86%);
  height:700px;
  margin:auto;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-logo{
  position:absolute;
  top:72px;
  left:25px;
  width:124px;
  height:124px;
  object-fit:contain;
  border-radius:50%;
}
.hero-copy{
  text-align:center;
  display:grid;
  gap:21px;
  font-size:39px;
  font-weight:400;
  line-height:1.08;
  text-shadow:0 1px 1px #0002;
  transform:translateY(28px);
}
.hero-copy strong{
  font-size:54px;
  font-weight:500;
}

/* GENERAL */
.section{padding:45px 0}
.container{width:min(var(--max),84%);margin:auto}
h2{
  margin:0 0 30px;
  text-align:center;
  color:#397398;
  font-size:34px;
  font-weight:500;
  line-height:1.12;
}

/* SERVICE CARDS */
.services{
  background:var(--pale);
  padding-top:34px;
  padding-bottom:40px;
}
.services h2{margin-bottom:24px}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.card{
  background:#fff;
  border:1px solid #59636a;
  padding:20px 26px 21px;
}
.card h3{
  text-align:center;
  font-size:20px;
  font-weight:400;
  margin:0 0 11px;
}
.card h3 strong{font-weight:600}
.card p{
  font-size:14px;
  line-height:1.4;
  margin:0 0 3px;
}
.card ul{
  padding-left:20px;
  margin-top:2px;
  margin-bottom:0;
}
.card li{
  font-size:14px;
  line-height:1.4;
}

/* STAGES */
.stages{
  background:#fff;
  padding-top:42px;
  padding-bottom:44px;
}
.stages h2{
  margin-bottom:2px;
}
.subtitle{
  text-align:center;
  margin:0 0 31px;
}
.stage-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.stage{
  width:155px;
  height:170px;
  border:2px solid #397398;
  border-radius:30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
}
.stage img{width:72px;height:72px}
.stage span{
  font-size:13px;
  font-weight:600;
}
.arrow{
  font-size:40px;
  color:#397398;
}
.stages h4{
  text-align:center;
  margin:34px 0 8px;
  font-weight:500;
  font-size:17px;
}
.needs{
  display:grid;
  gap:9px;
  border-top:1px solid #55646d;
  padding-top:10px;
}
.need-row{
  background:#eef0f1;
  display:grid;
  grid-template-columns:minmax(105px,1fr) 84px minmax(250px,2.5fr) 84px minmax(105px,1fr);
  align-items:center;
  gap:10px;
  text-align:center;
  padding:7px 12px;
}
.need-row strong{
  font-size:14px;
  color:#4d5a63;
  font-weight:600;
}
.need-row small{
  font-size:10.5px;
  line-height:1.15;
}
.flow-arrow{
  display:block;
  position:relative;
  height:12px;
}
.flow-arrow::before{
  content:"";
  position:absolute;
  top:5px;
  left:0;
  right:0;
  border-top:2px solid #397398;
}
.flow-arrow::after{
  content:"";
  position:absolute;
  top:1px;
  width:0;
  height:0;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
}
.flow-arrow.left::after{
  left:0;
  border-right:9px solid #397398;
}
.flow-arrow.right::after{
  right:0;
  border-left:9px solid #397398;
}

/* ENGAGEMENT */
.engage{
  background:var(--blue);
  color:white;
  padding:55px 0;
}
.narrow{
  width:min(900px,78%);
  margin:auto;
}
.engage h2{
  color:white;
  margin-bottom:15px;
}
.lead{
  font-size:18px;
  line-height:1.45;
}
.engage dl{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:28px 20px;
  margin:35px 40px;
}
.engage dt{font-weight:600}
.engage dd{
  margin:0;
  line-height:1.4;
}
.article{
  font-size:18px;
  line-height:1.55;
  margin:35px 10px 0;
}
.article a{text-underline-offset:3px}

/* ABOUT */
.about{
  min-height:620px;
  background:linear-gradient(120deg,#e6f1f7,#d7e9f3 55%,#edf6fa);
  padding-top:50px;
}
.about h2{
  font-family:"Avenir Next",Avenir,"Helvetica Neue",Arial,sans-serif;
  font-size:36px;
  font-weight:600;
  letter-spacing:.1px;
  margin-bottom:30px;
}
.about-content{
  max-width:560px;
  margin:auto;
}
.headshot{
  display:block;
  width:220px;
  height:220px;
  object-fit:cover;
  object-position:center 18%;
  margin:0 auto 40px;
}
.bio{
  max-width:540px;
  margin:auto;
}
.bio-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.bio-title h3{
  font-size:27px;
  font-weight:400;
  margin:0;
}
.linkedin{
  background:#2877b5;
  color:white;
  font-weight:600;
  text-decoration:none;
  border-radius:3px;
  padding:2px 5px;
  font-size:22px;
}
.bio p{
  font-size:17px;
  line-height:1.35;
  margin:22px 0 0;
}

/* CONTACT */
.contact{
  background:#0d496f;
  color:#d7e7f1;
  padding:70px 0 85px;
}
.contact h2{
  color:#c9deeb;
  font-size:35px;
  font-weight:300;
}
.contact form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px 35px;
}
.contact label{font-size:12px}
.contact input,
.contact textarea{
  display:block;
  width:100%;
  border:0;
  border-bottom:1px solid #9fc0d4;
  background:transparent;
  color:white;
  padding:10px 0;
  outline:none;
  font:inherit;
}
.contact textarea{
  height:70px;
  resize:vertical;
}
.message{
  grid-column:1/3;
  grid-row:3;
  width:74%;
}
.contact button{
  grid-column:2;
  grid-row:3;
  width:50%;
  justify-self:end;
  align-self:end;
  height:50px;
  border:0;
  background:#bcd8e9;
  color:#173342;
  cursor:pointer;
}

/* FOOTER */
footer{
  background:var(--deep);
  color:#d2e0e8;
  padding:45px max(4%,calc((100% - var(--max))/2));
  display:grid;
  grid-template-columns:1.4fr .7fr 1fr;
  gap:60px;
  font-size:12px;
  line-height:1.8;
}
footer strong{
  font-size:14px;
  font-weight:400;
}
footer a{color:inherit}

@media(max-width:760px){
  .site-header{height:auto;padding:18px 0}
  .nav-wrap{gap:16px}
  .site-header nav{gap:12px}
  .hero,.hero-inner{height:570px;min-height:570px}
  .hero-logo{width:90px;height:90px;top:35px;left:0}
  .hero-copy{font-size:25px;gap:16px;transform:translateY(18px)}
  .hero-copy strong{font-size:36px}
  .cards{grid-template-columns:1fr}
  .stage-row{display:grid;grid-template-columns:1fr;justify-items:center}
  .arrow{transform:rotate(90deg)}
  .need-row{
    grid-template-columns:1fr;
    gap:5px;
  }
  .flow-arrow{display:none}
  .engage dl{grid-template-columns:1fr;margin:30px 0;gap:8px}
  .engage dd{margin-bottom:15px}
  .about-content{max-width:100%}
  .headshot{width:190px;height:190px}
  .contact form{grid-template-columns:1fr}
  .message{
    grid-column:auto;
    grid-row:auto;
    width:100%;
  }
  .contact button{
    grid-column:auto;
    grid-row:auto;
    width:50%;
    justify-self:end;
  }
  footer{grid-template-columns:1fr;gap:25px}
}

.hidden-field{display:none!important}
